1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/service/dbtv.py

40 lines
1.3 KiB
Python
Raw Normal View History

2014-08-11 23:20:17 +02:00
from __future__ import absolute_import
import re
import json
import copy
from svtplay_dl.service import Service, OpenGraphThumbMixin
2014-12-08 23:07:02 +01:00
from svtplay_dl.utils.urllib import urlparse
2014-08-11 23:20:17 +02:00
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.error import ServiceError
2014-08-11 23:20:17 +02:00
2015-09-15 20:10:32 +02:00
2014-08-11 23:20:17 +02:00
class Dbtv(Service, OpenGraphThumbMixin):
supported_domains = ['dbtv.no']
def get(self):
data = self.get_urldata()
2016-05-14 22:54:30 +02:00
if self.exclude():
2015-09-06 23:04:48 +02:00
yield ServiceError("Excluding video")
return
2014-08-11 23:20:17 +02:00
parse = urlparse(self.url)
2018-01-30 20:11:37 +01:00
vidoid = parse.path[parse.path.rfind("/") + 1:]
2014-08-11 23:20:17 +02:00
match = re.search(r'JSONdata = ({.*});', data)
if not match:
yield ServiceError("Cant find json data")
2014-10-06 23:21:43 +02:00
return
2014-08-11 23:20:17 +02:00
janson = json.loads(match.group(1))
playlist = janson["playlist"]
for i in playlist:
if i["brightcoveId"] == int(vidoid):
2014-08-11 23:20:17 +02:00
if i["HLSURL"]:
streams = hlsparse(self.options, self.http.request("get", i["HLSURL"]), i["HLSURL"])
2014-08-11 23:20:17 +02:00
for n in list(streams.keys()):
yield streams[n]
2014-08-11 23:20:17 +02:00
for n in i["renditions"]:
if n["container"] == "MP4":
2018-01-30 20:11:37 +01:00
yield HTTP(copy.copy(self.options), n["URL"], int(n["rate"]) / 1000)