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-04-27 13:17:00 +02:00
|
|
|
|
|
|
|
# pylint has issues with urlparse: "some types could not be inferred"
|
|
|
|
# pylint: disable=E1103
|
|
|
|
|
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
|
2014-03-25 20:21:52 +01:00
|
|
|
import json
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 13:42:33 +02:00
|
|
|
from svtplay_dl.utils.urllib import urlparse
|
2014-01-26 01:54:20 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2014-04-21 20:04:06 +02:00
|
|
|
from svtplay_dl.utils import get_http_data
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-04-21 17:13:38 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
2014-05-01 16:52:05 +02:00
|
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
2014-06-26 21:52:32 +02:00
|
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
2014-04-21 20:04:06 +02:00
|
|
|
from svtplay_dl.subtitle import subtitle_sami
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-01-26 01:54:20 +01:00
|
|
|
class Viaplay(Service, OpenGraphThumbMixin):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = [
|
2014-01-16 21:41:48 +01:00
|
|
|
'tv3play.se', 'tv6play.se', 'tv8play.se', 'tv10play.se',
|
|
|
|
'tv3play.no', 'tv3play.dk', 'tv6play.no', 'viasat4play.no',
|
2014-06-26 22:04:34 +02:00
|
|
|
'tv3play.ee', 'tv3play.lv', 'tv3play.lt', 'tvplay.lv', 'viagame.com']
|
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-03-09 15:56:00 +01:00
|
|
|
|
|
|
|
def _get_video_id(self):
|
|
|
|
"""
|
|
|
|
Extract video id. It will try to avoid making an HTTP request
|
|
|
|
if it can find the ID in the URL, but otherwise it will try
|
|
|
|
to scrape it from the HTML document. Returns None in case it's
|
|
|
|
unable to extract the ID at all.
|
|
|
|
"""
|
2014-06-02 22:13:11 +02:00
|
|
|
html_data = self.get_urldata()
|
2014-06-22 22:46:00 +02:00
|
|
|
match = re.search(r'data-video-id="([0-9]+)"', html_data)
|
2014-06-26 22:04:16 +02:00
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
match = re.search(r'data-videoid="([0-9]+)', html_data)
|
2014-03-09 15:56:00 +01:00
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
|
2014-06-02 22:13:11 +02:00
|
|
|
parse = urlparse(self.url)
|
2014-09-11 23:45:08 +02:00
|
|
|
match = re.search(r'/\w+/(\d+)', parse.path)
|
2014-03-09 15:56:00 +01:00
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get(self, options):
|
|
|
|
vid = self._get_video_id()
|
|
|
|
if vid is None:
|
2013-01-17 00:21:47 +01:00
|
|
|
log.error("Cant find video file")
|
|
|
|
sys.exit(2)
|
2014-03-09 15:56:00 +01:00
|
|
|
|
2014-10-23 00:03:14 +02:00
|
|
|
url = "http://playapi.mtgx.tv/v3/videos/%s" % vid
|
2013-01-17 00:21:47 +01:00
|
|
|
options.other = ""
|
|
|
|
data = get_http_data(url)
|
2014-10-23 00:03:14 +02:00
|
|
|
dataj = json.loads(data)
|
|
|
|
if "msg" in dataj:
|
|
|
|
log.error("%s" % dataj["msg"])
|
2014-09-11 23:51:32 +02:00
|
|
|
return
|
2014-08-11 19:44:20 +02:00
|
|
|
|
2014-10-23 00:03:14 +02:00
|
|
|
if dataj["type"] == "live":
|
|
|
|
options.live = True
|
|
|
|
|
|
|
|
if dataj["sami_path"]:
|
|
|
|
yield subtitle_sami(dataj["sami_path"])
|
|
|
|
|
|
|
|
streams = get_http_data("http://playapi.mtgx.tv/v3/videos/stream/%s" % vid)
|
2014-06-26 21:52:32 +02:00
|
|
|
streamj = json.loads(streams)
|
|
|
|
|
2014-10-23 00:03:14 +02:00
|
|
|
if "msg" in streamj:
|
|
|
|
log.error("Can't play this because the video is either not found or geoblocked.")
|
|
|
|
return
|
|
|
|
|
2014-06-26 21:52:32 +02:00
|
|
|
if streamj["streams"]["medium"]:
|
|
|
|
filename = streamj["streams"]["medium"]
|
|
|
|
if filename[len(filename)-3:] == "f4m":
|
|
|
|
manifest = "%s?hdcore=2.8.0&g=hejsan" % filename
|
|
|
|
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]
|
2014-06-26 21:52:32 +02:00
|
|
|
else:
|
|
|
|
parse = urlparse(filename)
|
2014-08-27 15:13:57 +02:00
|
|
|
match = re.search("^(/[^/]+)/(.*)", parse.path)
|
2014-06-26 21:52:32 +02:00
|
|
|
if not match:
|
|
|
|
log.error("Somthing wrong with rtmpparse")
|
2014-05-01 17:04:08 +02:00
|
|
|
sys.exit(2)
|
2014-06-26 21:52:32 +02:00
|
|
|
filename = "%s://%s:%s%s" % (parse.scheme, parse.hostname, parse.port, match.group(1))
|
|
|
|
path = "-y %s" % match.group(2)
|
|
|
|
options.other = "-W http://flvplayer.viastream.viasat.tv/flvplayer/play/swf/player.swf %s" % path
|
|
|
|
yield RTMP(copy.copy(options), filename, 800)
|
2014-05-01 17:04:08 +02:00
|
|
|
|
2014-06-26 21:52:32 +02:00
|
|
|
if streamj["streams"]["hls"]:
|
|
|
|
streams = hlsparse(streamj["streams"]["hls"])
|
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield HLS(copy.copy(options), streams[n], n)
|
2014-01-11 23:02:47 +01:00
|
|
|
|
2014-03-25 20:21:52 +01:00
|
|
|
def find_all_episodes(self, options):
|
|
|
|
format_id = re.search(r'data-format-id="(\d+)"', self.get_urldata())
|
|
|
|
if not format_id:
|
|
|
|
log.error("Can't find video info")
|
|
|
|
sys.exit(2)
|
|
|
|
data = get_http_data("http://playapi.mtgx.tv/v1/sections?sections=videos.one,seasons.videolist&format=%s" % format_id.group(1))
|
|
|
|
jsondata = json.loads(data)
|
|
|
|
videos = jsondata["_embedded"]["sections"][1]["_embedded"]["seasons"][0]["_embedded"]["episodelist"]["_embedded"]["videos"]
|
|
|
|
|
|
|
|
return sorted(x["sharing"]["url"] for x in videos)
|