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 re
|
2014-08-27 22:58:37 +02:00
|
|
|
import os
|
2013-02-12 19:43:37 +01:00
|
|
|
import xml.etree.ElementTree as ET
|
2014-04-03 19:52:51 +02:00
|
|
|
import json
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-04-03 19:52:51 +02:00
|
|
|
from svtplay_dl.utils.urllib import urlparse, parse_qs, quote_plus
|
2014-01-19 14:26:48 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2014-09-07 22:51:44 +02:00
|
|
|
from svtplay_dl.utils import get_http_data, is_py2_old, filenamify, HTTPError
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-07-13 22:48:34 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse, HLS
|
2014-04-21 18:24:01 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
2014-04-27 13:24:53 +02:00
|
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
2014-08-31 01:20:36 +02:00
|
|
|
from svtplay_dl.subtitle import subtitle
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-01-19 14:26:48 +01:00
|
|
|
class Tv4play(Service, OpenGraphThumbMixin):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['tv4play.se', 'tv4.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-11 23:02:47 +01:00
|
|
|
def __init__(self, url):
|
|
|
|
Service.__init__(self, url)
|
|
|
|
self.subtitle = None
|
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
|
|
|
parse = urlparse(self.url)
|
|
|
|
if "tv4play.se" in self.url:
|
2013-01-17 00:21:47 +01:00
|
|
|
try:
|
2014-08-28 16:48:15 +02:00
|
|
|
vid = parse_qs(parse.query)["video_id"][0]
|
2013-01-17 00:21:47 +01:00
|
|
|
except KeyError:
|
2014-10-06 23:21:43 +02:00
|
|
|
log.error("Can't find video file for: %s", self.url)
|
|
|
|
return
|
2013-01-17 00:21:47 +01:00
|
|
|
else:
|
2014-08-31 00:36:19 +02:00
|
|
|
match = re.search(r"\"vid\":\"(\d+)\",", self.get_urldata())
|
2013-01-17 00:21:47 +01:00
|
|
|
if match:
|
|
|
|
vid = match.group(1)
|
|
|
|
else:
|
2014-08-31 00:36:19 +02:00
|
|
|
match = re.search(r"-(\d+)$", self.url)
|
2013-03-02 22:14:10 +01:00
|
|
|
if match:
|
|
|
|
vid = match.group(1)
|
|
|
|
else:
|
2014-10-06 23:21:43 +02:00
|
|
|
log.error("Can't find video id for %s", self.url)
|
|
|
|
return
|
2013-01-17 00:21:47 +01:00
|
|
|
|
|
|
|
url = "http://premium.tv4play.se/api/web/asset/%s/play" % vid
|
2014-09-07 22:51:44 +02:00
|
|
|
try:
|
|
|
|
data = get_http_data(url)
|
|
|
|
except HTTPError as e:
|
|
|
|
xml = ET.XML(e.read())
|
|
|
|
code = xml.find("code").text
|
|
|
|
if code == "SESSION_NOT_AUTHENTICATED":
|
|
|
|
log.error("Can't access premium content")
|
2014-09-28 19:34:56 +02:00
|
|
|
elif code == "ASSET_PLAYBACK_INVALID_GEO_LOCATION":
|
2014-09-07 22:51:44 +02:00
|
|
|
log.error("Can't downoad this video because of geoblocked.")
|
|
|
|
else:
|
2014-09-28 19:34:56 +02:00
|
|
|
log.error("Can't find any info for that video")
|
2014-09-07 22:51:44 +02:00
|
|
|
return
|
2013-01-17 00:21:47 +01:00
|
|
|
xml = ET.XML(data)
|
|
|
|
ss = xml.find("items")
|
2013-12-30 01:35:08 +01:00
|
|
|
if is_py2_old:
|
2013-01-17 00:21:47 +01:00
|
|
|
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
|
2014-06-03 16:25:31 +02:00
|
|
|
if xml.find("drmProtected").text == "true":
|
2014-11-25 21:46:33 +01:00
|
|
|
log.error("We cant download DRM protected content from this site.")
|
|
|
|
return
|
2014-08-27 22:58:37 +02:00
|
|
|
|
|
|
|
if options.output_auto:
|
|
|
|
directory = os.path.dirname(options.output)
|
|
|
|
options.service = "tv4play"
|
|
|
|
title = "%s-%s-%s" % (options.output, vid, options.service)
|
|
|
|
title = filenamify(title)
|
|
|
|
if len(directory):
|
|
|
|
options.output = "%s/%s" % (directory, title)
|
|
|
|
else:
|
|
|
|
options.output = title
|
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
for i in sa:
|
2013-11-17 13:32:33 +01:00
|
|
|
if i.find("mediaFormat").text == "mp4":
|
2014-06-23 21:22:26 +02:00
|
|
|
base = urlparse(i.find("base").text)
|
|
|
|
parse = urlparse(i.find("url").text)
|
|
|
|
if base.scheme == "rtmp":
|
2014-04-21 18:24:01 +02:00
|
|
|
swf = "http://www.tv4play.se/flash/tv4playflashlets.swf"
|
2014-04-21 21:57:51 +02:00
|
|
|
options.other = "-W %s -y %s" % (swf, i.find("url").text)
|
2014-06-07 20:43:40 +02:00
|
|
|
yield RTMP(copy.copy(options), i.find("base").text, i.find("bitrate").text)
|
2014-06-23 21:22:26 +02:00
|
|
|
elif parse.path[len(parse.path)-3:len(parse.path)] == "f4m":
|
|
|
|
query = ""
|
|
|
|
if i.find("url").text[-1] != "?":
|
|
|
|
query = "?"
|
|
|
|
manifest = "%s%shdcore=2.8.0&g=hejsan" % (i.find("url").text, query)
|
2014-06-07 20:43:40 +02:00
|
|
|
streams = hdsparse(copy.copy(options), manifest)
|
2014-10-12 23:31:02 +02:00
|
|
|
if streams:
|
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield streams[n]
|
2013-03-10 13:55:34 +01:00
|
|
|
elif i.find("mediaFormat").text == "smi":
|
2014-08-31 01:20:36 +02:00
|
|
|
yield subtitle(copy.copy(options), "smi", i.find("url").text)
|
2014-04-03 19:52:51 +02:00
|
|
|
|
2014-07-13 22:48:34 +02:00
|
|
|
url = "http://premium.tv4play.se/api/web/asset/%s/play?protocol=hls" % vid
|
2014-09-07 22:51:44 +02:00
|
|
|
try:
|
|
|
|
data = get_http_data(url)
|
|
|
|
except HTTPError as e:
|
|
|
|
log.warning("Can't get HLS video.")
|
|
|
|
return
|
2014-07-13 22:48:34 +02:00
|
|
|
xml = ET.XML(data)
|
|
|
|
ss = xml.find("items")
|
|
|
|
if is_py2_old:
|
|
|
|
sa = list(ss.getiterator("item"))
|
|
|
|
else:
|
|
|
|
sa = list(ss.iter("item"))
|
|
|
|
for i in sa:
|
2014-08-18 22:22:03 +02:00
|
|
|
if i.find("mediaFormat").text == "mp4":
|
|
|
|
parse = urlparse(i.find("url").text)
|
|
|
|
if parse.path.endswith("m3u8"):
|
|
|
|
streams = hlsparse(i.find("url").text)
|
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield HLS(copy.copy(options), streams[n], n)
|
2014-07-13 22:48:34 +02:00
|
|
|
|
2014-04-03 19:52:51 +02:00
|
|
|
def find_all_episodes(self, options):
|
|
|
|
parse = urlparse(self.url)
|
2014-09-06 21:50:50 +02:00
|
|
|
show = parse.path[parse.path.find("/", 1)+1:]
|
|
|
|
if not re.search("%", show):
|
|
|
|
show = quote_plus(show)
|
2014-04-03 19:52:51 +02:00
|
|
|
data = get_http_data("http://webapi.tv4play.se/play/video_assets?type=episode&is_live=false&platform=web&node_nids=%s&per_page=99999" % show)
|
|
|
|
jsondata = json.loads(data)
|
|
|
|
episodes = []
|
|
|
|
for i in jsondata["results"]:
|
|
|
|
try:
|
|
|
|
days = int(i["availability"]["availability_group_free"])
|
|
|
|
except ValueError:
|
|
|
|
days = 999
|
2014-11-25 21:48:08 +01:00
|
|
|
if days > 0:
|
2014-07-22 10:13:49 +02:00
|
|
|
video_id = i["id"]
|
|
|
|
url = "http://www.tv4play.se/program/%s?video_id=%s" % (
|
|
|
|
show, video_id)
|
2014-04-03 19:52:51 +02:00
|
|
|
episodes.append(url)
|
2014-07-22 10:13:49 +02:00
|
|
|
return sorted(episodes)
|