1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/lib/svtplay_dl/service/riksdagen.py
2021-12-18 19:52:08 +01:00

31 lines
959 B
Python

import re
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.service import OpenGraphThumbMixin
from svtplay_dl.service import Service
class Riksdagen(Service, OpenGraphThumbMixin):
supported_domains_re = ["riksdagen.se", "www.riksdagen.se"]
def get(self):
match = re.search("_([a-zA-Z0-9]+)$", self.url)
if not match:
yield ServiceError("Cant find video id.")
return
vid = match.group(1)
res = self.http.get(f"http://www.riksdagen.se/api/videostream/get/{vid}")
data = res.json()
try:
janson = data["videodata"][0]["streams"]["files"]
except TypeError:
yield ServiceError("Cant find video.")
return
for i in janson:
for n in i["bandwidth"]:
yield from hlsparse(self.config, self.http.request("get", n["url"]), n["url"], output=self.output)