2014-08-17 10:55:05 +02:00
|
|
|
import copy
|
2019-08-25 00:40:39 +02:00
|
|
|
import json
|
|
|
|
import re
|
2018-01-30 22:07:21 +01:00
|
|
|
from urllib.parse import urlparse
|
2014-08-17 10:55:05 +02:00
|
|
|
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2014-08-17 10:55:05 +02:00
|
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
2016-02-07 10:41:43 +01:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
|
|
from svtplay_dl.service import OpenGraphThumbMixin
|
|
|
|
from svtplay_dl.service import Service
|
2014-08-17 10:55:05 +02:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-08-17 10:55:05 +02:00
|
|
|
class Vg(Service, OpenGraphThumbMixin):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains = ["vg.no", "vgtv.no"]
|
2014-08-17 10:55:05 +02:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search(r'data-videoid="([^"]+)"', data)
|
2014-08-17 10:55:05 +02:00
|
|
|
if not match:
|
2014-08-18 22:21:44 +02:00
|
|
|
parse = urlparse(self.url)
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search(r"video/(\d+)/", parse.fragment)
|
2014-08-18 22:21:44 +02:00
|
|
|
if not match:
|
2019-08-25 00:33:51 +02:00
|
|
|
yield ServiceError("Can't find video file for: {}".format(self.url))
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-08-17 10:55:05 +02:00
|
|
|
videoid = match.group(1)
|
2019-09-06 22:49:49 +02:00
|
|
|
data = self.http.request("get", "http://svp.vg.no/svp/api/v1/vgtv/assets/{}?appName=vgtv-website".format(videoid)).text
|
2014-08-17 10:55:05 +02:00
|
|
|
jsondata = json.loads(data)
|
2018-05-13 13:06:45 +02:00
|
|
|
self.output["title"] = jsondata["title"]
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2014-08-17 10:55:05 +02:00
|
|
|
if "hds" in jsondata["streamUrls"]:
|
2019-08-25 00:27:31 +02:00
|
|
|
streams = hdsparse(
|
|
|
|
self.config,
|
2019-09-06 22:49:49 +02:00
|
|
|
self.http.request("get", jsondata["streamUrls"]["hds"], params={"hdcore": "3.7.0"}),
|
2019-08-25 00:27:31 +02:00
|
|
|
jsondata["streamUrls"]["hds"],
|
|
|
|
output=self.output,
|
|
|
|
)
|
2018-05-08 22:48:55 +02:00
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield streams[n]
|
2014-08-17 10:55:05 +02:00
|
|
|
if "hls" in jsondata["streamUrls"]:
|
2019-08-25 00:27:31 +02:00
|
|
|
streams = hlsparse(
|
2019-09-06 22:49:49 +02:00
|
|
|
self.config, self.http.request("get", jsondata["streamUrls"]["hls"]), jsondata["streamUrls"]["hls"], output=self.output
|
2019-08-25 00:27:31 +02:00
|
|
|
)
|
2014-08-17 10:55:05 +02:00
|
|
|
for n in list(streams.keys()):
|
2015-10-04 14:37:16 +02:00
|
|
|
yield streams[n]
|
2014-08-17 10:55:05 +02:00
|
|
|
if "mp4" in jsondata["streamUrls"]:
|
2019-09-06 22:49:49 +02:00
|
|
|
yield HTTP(copy.copy(self.config), jsondata["streamUrls"]["mp4"], output=self.output)
|