mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
23 lines
735 B
Python
23 lines
735 B
Python
import json
|
|
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(r"application\/json\">({.+})<\/script>", self.get_urldata())
|
|
if not match:
|
|
yield ServiceError("Cant find the video.")
|
|
return
|
|
|
|
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)
|