mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
from __future__ import absolute_import
|
|
import re
|
|
import sys
|
|
import json
|
|
import copy
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.utils.urllib import urlparse
|
|
from svtplay_dl.utils import get_http_data
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
|
from svtplay_dl.log import log
|
|
|
|
class Vg(Service, OpenGraphThumbMixin):
|
|
supported_domains = ['vg.no']
|
|
|
|
def get(self, options):
|
|
match = re.search(r'data-videoid="([^"]+)"', self.get_urldata())
|
|
if not match:
|
|
log.error("Can't find video id")
|
|
sys.exit(2)
|
|
videoid = match.group(1)
|
|
data = get_http_data("http://svp.vg.no/svp/api/v1/vgtv/assets/%s?appName=vgtv-website" % videoid)
|
|
jsondata = json.loads(data)
|
|
|
|
if "hds" in jsondata["streamUrls"]:
|
|
parse = urlparse(jsondata["streamUrls"]["hds"])
|
|
manifest = "%s://%s%s?%s&hdcore=3.3.0" % (parse.scheme, parse.netloc, parse.path, parse.query)
|
|
streams = hdsparse(copy.copy(options), manifest)
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if "hls" in jsondata["streamUrls"]:
|
|
streams = hlsparse(jsondata["streamUrls"]["hls"])
|
|
for n in list(streams.keys()):
|
|
yield HLS(copy.copy(options), streams[n], n)
|
|
if "mp4" in jsondata["streamUrls"]:
|
|
yield HTTP(copy.copy(options), jsondata["streamUrls"]["mp4"]) |