2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-02-12 19:43:37 +01:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2013-03-01 23:39:42 +01:00
|
|
|
from svtplay.utils import get_http_data, select_quality
|
|
|
|
from svtplay.log import log
|
|
|
|
from svtplay.rtmp import download_rtmp
|
2013-02-12 19:43:37 +01:00
|
|
|
|
|
|
|
if sys.version_info > (3, 0):
|
|
|
|
from urllib.parse import urlparse, parse_qs, unquote_plus, quote_plus
|
|
|
|
else:
|
|
|
|
from urlparse import urlparse, parse_qs
|
|
|
|
from urllib import unquote_plus, quote_plus
|
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
class Expressen():
|
|
|
|
def handle(self, url):
|
|
|
|
return "expressen.se" in url
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
parse = urlparse(url)
|
|
|
|
match = re.search("/(.*[\/\+].*)/", unquote_plus(parse.path))
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
url = "http://tv.expressen.se/%s/?standAlone=true&output=xml" % quote_plus(match.group(1))
|
|
|
|
other = ""
|
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
ss = xml.find("vurls")
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
sa = list(ss.getiterator("vurl"))
|
|
|
|
else:
|
|
|
|
sa = list(ss.iter("vurl"))
|
|
|
|
streams = {}
|
|
|
|
|
|
|
|
for i in sa:
|
|
|
|
streams[int(i.attrib["bitrate"])] = i.text
|
|
|
|
|
|
|
|
test = select_quality(options, streams)
|
|
|
|
|
|
|
|
filename = test
|
|
|
|
match = re.search("rtmp://([0-9a-z\.]+/[0-9]+/)(.*).flv", filename)
|
|
|
|
|
|
|
|
filename = "rtmp://%s" % match.group(1)
|
|
|
|
options.other = "-y %s" % match.group(2)
|
|
|
|
|
|
|
|
download_rtmp(options, filename)
|
|
|
|
|