2013-03-02 21:26:28 +01:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-01-17 00:21:47 +01:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2013-04-21 13:42:33 +02:00
|
|
|
from svtplay_dl.utils.urllib import urlparse, parse_qs
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.utils import get_http_data
|
|
|
|
from svtplay_dl.log import log
|
|
|
|
from svtplay_dl.fetcher.rtmp import download_rtmp
|
|
|
|
from svtplay_dl.fetcher.http import download_http
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Aftonbladet(Service):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['aftonbladet.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
|
|
|
parse = urlparse(self.url)
|
|
|
|
data = get_http_data(self.url)
|
2013-01-17 00:21:47 +01:00
|
|
|
match = re.search("abTvArticlePlayer-player-(.*)-[0-9]+-[0-9]+-clickOverlay", data)
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
try:
|
|
|
|
start = parse_qs(parse[4])["start"][0]
|
|
|
|
except KeyError:
|
|
|
|
start = 0
|
|
|
|
url = "http://www.aftonbladet.se/resource/webbtv/article/%s/player" % match.group(1)
|
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
url = xml.find("articleElement").find("mediaElement").find("baseUrl").text
|
|
|
|
path = xml.find("articleElement").find("mediaElement").find("media").attrib["url"]
|
2013-03-02 21:28:58 +01:00
|
|
|
live = xml.find("articleElement").find("mediaElement").find("isLive").text
|
2013-01-17 00:21:47 +01:00
|
|
|
options.other = "-y %s" % path
|
|
|
|
|
|
|
|
if start > 0:
|
|
|
|
options.other = "%s -A %s" % (options.other, str(start))
|
|
|
|
|
2013-03-02 21:28:58 +01:00
|
|
|
if live == "true":
|
|
|
|
options.live = True
|
2013-02-12 18:52:01 +01:00
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
if url == None:
|
|
|
|
log.error("Can't find any video on that page")
|
|
|
|
sys.exit(3)
|
|
|
|
|
|
|
|
if url[0:4] == "rtmp":
|
|
|
|
download_rtmp(options, url)
|
|
|
|
else:
|
|
|
|
filename = url + path
|
|
|
|
download_http(options, filename)
|
|
|
|
|