1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-12-02 16:14:15 +01:00
svtplay-dl/lib/svtplay_dl/service/riksdagen.py

23 lines
735 B
Python
Raw Normal View History

2024-06-15 13:15:00 +02:00
import json
2019-08-25 00:40:39 +02:00
import re
2016-09-02 01:20:54 +02:00
from svtplay_dl.error import ServiceError
2019-08-25 00:40:39 +02:00
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.service import OpenGraphThumbMixin
from svtplay_dl.service import Service
2016-09-02 01:20:54 +02:00
class Riksdagen(Service, OpenGraphThumbMixin):
supported_domains_re = ["riksdagen.se", "www.riksdagen.se"]
2016-09-02 01:20:54 +02:00
def get(self):
2024-06-15 13:15:00 +02:00
match = re.search(r"application\/json\">({.+})<\/script>", self.get_urldata())
if not match:
yield ServiceError("Cant find the video.")
2016-09-02 01:20:54 +02:00
return
2024-06-15 13:15:00 +02:00
janson = json.loads(match.group(1))
url = janson["props"]["pageProps"]["contentApiData"]["video"]["url"]
yield from hlsparse(self.config, self.http.request("get", url), url, output=self.output)