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-02-12 19:43:37 +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-24 20:24:08 +01:00
|
|
|
from svtplay_dl.utils import get_http_data, select_quality, subtitle_smi
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
|
|
|
from svtplay_dl.fetcher.rtmp import download_rtmp
|
|
|
|
from svtplay_dl.fetcher.hds import download_hds
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Tv4play(Service):
|
2013-01-17 00:21:47 +01:00
|
|
|
def handle(self, url):
|
|
|
|
return ("tv4play.se" in url) or ("tv4.se" in url)
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
parse = urlparse(url)
|
|
|
|
if "tv4play.se" in url:
|
|
|
|
try:
|
|
|
|
vid = parse_qs(parse[4])["video_id"][0]
|
|
|
|
except KeyError:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
else:
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"-(\d+)$", url)
|
2013-01-17 00:21:47 +01:00
|
|
|
if match:
|
|
|
|
vid = match.group(1)
|
|
|
|
else:
|
2013-03-02 22:14:10 +01:00
|
|
|
data = get_http_data(url)
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"\"vid\":\"(\d+)\",", data)
|
2013-03-02 22:14:10 +01:00
|
|
|
if match:
|
|
|
|
vid = match.group(1)
|
|
|
|
else:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
2013-01-17 00:21:47 +01:00
|
|
|
|
|
|
|
url = "http://premium.tv4play.se/api/web/asset/%s/play" % vid
|
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
ss = xml.find("items")
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
sa = list(ss.getiterator("item"))
|
|
|
|
else:
|
|
|
|
sa = list(ss.iter("item"))
|
|
|
|
|
|
|
|
if xml.find("live").text:
|
|
|
|
if xml.find("live").text != "false":
|
|
|
|
options.live = True
|
|
|
|
|
|
|
|
streams = {}
|
2013-03-10 13:55:34 +01:00
|
|
|
subtitle = False
|
2013-01-17 00:21:47 +01:00
|
|
|
|
|
|
|
for i in sa:
|
|
|
|
if i.find("mediaFormat").text != "smi":
|
|
|
|
stream = {}
|
|
|
|
stream["uri"] = i.find("base").text
|
|
|
|
stream["path"] = i.find("url").text
|
|
|
|
streams[int(i.find("bitrate").text)] = stream
|
2013-03-10 13:55:34 +01:00
|
|
|
elif i.find("mediaFormat").text == "smi":
|
|
|
|
subtitle = i.find("url").text
|
2013-01-17 00:21:47 +01:00
|
|
|
if len(streams) == 1:
|
|
|
|
test = streams[list(streams.keys())[0]]
|
|
|
|
else:
|
|
|
|
test = select_quality(options, streams)
|
|
|
|
|
2013-04-21 12:29:16 +02:00
|
|
|
## This is how we construct an swf uri, if we'll ever need one
|
2013-05-11 17:48:39 +02:00
|
|
|
swf = "http://www.tv4play.se/flash/tv4playflashlets.swf"
|
|
|
|
options.other = "-W %s -y %s" % (swf, test["path"])
|
2013-01-17 00:21:47 +01:00
|
|
|
|
|
|
|
if test["uri"][0:4] == "rtmp":
|
|
|
|
download_rtmp(options, test["uri"])
|
|
|
|
elif test["uri"][len(test["uri"])-3:len(test["uri"])] == "f4m":
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"\/se\/secure\/", test["uri"])
|
2013-01-17 00:21:47 +01:00
|
|
|
if match:
|
|
|
|
log.error("This stream is encrypted. Use --hls option")
|
|
|
|
sys.exit(2)
|
|
|
|
manifest = "%s?hdcore=2.8.0&g=hejsan" % test["path"]
|
2013-04-21 12:29:16 +02:00
|
|
|
download_hds(options, manifest)
|
2013-03-10 13:55:34 +01:00
|
|
|
if options.subtitle and subtitle:
|
|
|
|
data = get_http_data(subtitle)
|
|
|
|
subtitle_smi(options, data)
|
2013-01-17 00:21:47 +01:00
|
|
|
|