mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
import copy
|
|
import json
|
|
import re
|
|
from urllib.parse import urlparse
|
|
|
|
from svtplay_dl.error import ServiceError
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
from svtplay_dl.service import OpenGraphThumbMixin
|
|
from svtplay_dl.service import Service
|
|
|
|
|
|
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(f"Can't find video file for: {self.url}")
|
|
return
|
|
videoid = match.group(1)
|
|
data = self.http.request("get", f"http://svp.vg.no/svp/api/v1/vgtv/assets/{videoid}?appName=vgtv-website").text
|
|
jsondata = json.loads(data)
|
|
self.output["title"] = jsondata["title"]
|
|
|
|
if "hls" in jsondata["streamUrls"]:
|
|
yield from hlsparse(
|
|
self.config,
|
|
self.http.request("get", jsondata["streamUrls"]["hls"]),
|
|
jsondata["streamUrls"]["hls"],
|
|
output=self.output,
|
|
)
|
|
if "mp4" in jsondata["streamUrls"]:
|
|
yield HTTP(copy.copy(self.config), jsondata["streamUrls"]["mp4"], output=self.output)
|