mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
56 lines
2.1 KiB
Python
56 lines
2.1 KiB
Python
from __future__ import absolute_import
|
|
import re
|
|
import json
|
|
import copy
|
|
import os
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.utils.urllib import urlparse
|
|
from svtplay_dl.utils import filenamify
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
from svtplay_dl.error import ServiceError
|
|
|
|
|
|
class Vg(Service, OpenGraphThumbMixin):
|
|
supported_domains = ['vg.no', 'vgtv.no']
|
|
|
|
def get(self):
|
|
data = self.get_urldata()
|
|
match = re.search(r'data-videoid="([^"]+)"', data)
|
|
if not match:
|
|
parse = urlparse(self.url)
|
|
match = re.search(r'video/(\d+)/', parse.fragment)
|
|
if not match:
|
|
yield ServiceError("Can't find video file for: {0}".format(self.url))
|
|
return
|
|
videoid = match.group(1)
|
|
data = self.http.request("get", "http://svp.vg.no/svp/api/v1/vgtv/assets/{0}?appName=vgtv-website".format(videoid)).text
|
|
jsondata = json.loads(data)
|
|
|
|
if self.options.output_auto:
|
|
directory = os.path.dirname(self.options.output)
|
|
title = jsondata["title"]
|
|
title = filenamify(title)
|
|
if len(directory):
|
|
self.options.output = os.path.join(directory, title)
|
|
else:
|
|
self.options.output = title
|
|
|
|
if self.exclude():
|
|
yield ServiceError("Excluding video")
|
|
return
|
|
|
|
if "hds" in jsondata["streamUrls"]:
|
|
streams = hdsparse(self.options, self.http.request("get", jsondata["streamUrls"]["hds"], params={"hdcore": "3.7.0"}), jsondata["streamUrls"]["hds"])
|
|
if streams:
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if "hls" in jsondata["streamUrls"]:
|
|
streams = hlsparse(self.options, self.http.request("get", jsondata["streamUrls"]["hls"]), jsondata["streamUrls"]["hls"])
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if "mp4" in jsondata["streamUrls"]:
|
|
yield HTTP(copy.copy(self.options), jsondata["streamUrls"]["mp4"])
|