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/vg.py

56 lines
2.1 KiB
Python
Raw Normal View History

2014-08-17 10:55:05 +02:00
from __future__ import absolute_import
import re
import json
import copy
2014-08-18 22:21:44 +02:00
import os
2014-08-17 10:55:05 +02:00
from svtplay_dl.service import Service, OpenGraphThumbMixin
2014-12-08 23:07:02 +01:00
from svtplay_dl.utils.urllib import urlparse
from svtplay_dl.utils import filenamify
2014-08-17 10:55:05 +02:00
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.fetcher.hds import hdsparse
2016-02-07 10:41:43 +01:00
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.error import ServiceError
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):
2014-08-18 22:21:44 +02:00
supported_domains = ['vg.no', 'vgtv.no']
2014-08-17 10:55:05 +02:00
def get(self):
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)
match = re.search(r'video/(\d+)/', parse.fragment)
if not match:
yield ServiceError("Can't find video file for: {0}".format(self.url))
2014-10-06 23:21:43 +02:00
return
2014-08-17 10:55:05 +02:00
videoid = match.group(1)
data = self.http.request("get", "http://svp.vg.no/svp/api/v1/vgtv/assets/{0}?appName=vgtv-website".format(videoid)).text
2014-08-17 10:55:05 +02:00
jsondata = json.loads(data)
if self.options.output_auto:
directory = os.path.dirname(self.options.output)
title = jsondata["title"]
2014-08-18 22:21:44 +02:00
title = filenamify(title)
if len(directory):
self.options.output = os.path.join(directory, title)
2014-08-18 22:21:44 +02:00
else:
self.options.output = title
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-17 10:55:05 +02:00
if "hds" in jsondata["streamUrls"]:
streams = hdsparse(self.options, self.http.request("get", jsondata["streamUrls"]["hds"], params={"hdcore": "3.7.0"}), jsondata["streamUrls"]["hds"])
if streams:
for n in list(streams.keys()):
yield streams[n]
2014-08-17 10:55:05 +02:00
if "hls" in jsondata["streamUrls"]:
streams = hlsparse(self.options, self.http.request("get", jsondata["streamUrls"]["hls"]), jsondata["streamUrls"]["hls"])
2014-08-17 10:55:05 +02:00
for n in list(streams.keys()):
yield streams[n]
2014-08-17 10:55:05 +02:00
if "mp4" in jsondata["streamUrls"]:
yield HTTP(copy.copy(self.options), jsondata["streamUrls"]["mp4"])