mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
from __future__ import absolute_import
|
|
import re
|
|
import json
|
|
import copy
|
|
from urllib.parse import urlparse
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
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)
|
|
self.output["title"] = jsondata["title"]
|
|
|
|
if "hds" in jsondata["streamUrls"]:
|
|
streams = hdsparse(
|
|
self.config,
|
|
self.http.request("get", jsondata["streamUrls"]["hds"], params={"hdcore": "3.7.0"}),
|
|
jsondata["streamUrls"]["hds"],
|
|
output=self.output,
|
|
)
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if "hls" in jsondata["streamUrls"]:
|
|
streams = hlsparse(
|
|
self.config, self.http.request("get", jsondata["streamUrls"]["hls"]), jsondata["streamUrls"]["hls"], output=self.output
|
|
)
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
if "mp4" in jsondata["streamUrls"]:
|
|
yield HTTP(copy.copy(self.config), jsondata["streamUrls"]["mp4"], output=self.output)
|