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

59 lines
2.1 KiB
Python
Raw Normal View History

2013-03-02 21:26:28 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
from __future__ import absolute_import
import re
2014-01-26 01:50:54 +01:00
import json
2014-06-07 20:48:44 +02:00
import copy
2014-01-26 01:51:35 +01:00
from svtplay_dl.service import Service, OpenGraphThumbMixin
2013-09-15 00:29:26 +02:00
from svtplay_dl.utils.urllib import urlparse
2014-04-27 13:24:44 +02:00
from svtplay_dl.fetcher.hds import hdsparse
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.subtitle import subtitle
from svtplay_dl.error import ServiceError
2015-09-15 20:10:32 +02:00
2014-01-26 01:51:35 +01:00
class Nrk(Service, OpenGraphThumbMixin):
supported_domains = ['nrk.no', 'tv.nrk.no', 'p3.no', 'tv.nrksuper.no']
def get(self):
2016-05-14 22:54:30 +02:00
if self.exclude():
2015-09-06 23:04:48 +02:00
yield ServiceError("Excluding video")
return
# First, fint the video ID from the html document
2016-10-06 22:51:54 +02:00
match = re.search("<meta name=\"programid\".*?content=\"([^\"]*)\"", self.get_urldata())
if match:
video_id = match.group(1)
else:
yield ServiceError("Can't find video id.")
return
# Get media element details
dataurl = "http://v8.psapi.nrk.no/mediaelement/%s" % (video_id)
data = self.http.request("get", dataurl).text
data = json.loads(data)
manifest_url = data["mediaUrl"]
self.options.live = data["isLive"]
if manifest_url is None:
yield ServiceError(data["messageType"])
return
# Check if subtitles are available
if data["subtitlesUrlPath"]:
yield subtitle(copy.copy(self.options), "tt", data["subtitlesUrlPath"])
2014-06-07 20:48:44 +02:00
hlsurl = manifest_url.replace("/z/", "/i/").replace("manifest.f4m", "master.m3u8")
2015-09-01 00:23:19 +02:00
data = self.http.request("get", hlsurl)
if data.status_code == 403:
yield ServiceError("Can't fetch the video because of geoblocking")
2015-09-01 00:23:19 +02:00
return
streams = hlsparse(self.options, data, hlsurl)
2014-06-07 20:48:44 +02:00
for n in list(streams.keys()):
yield streams[n]
2014-06-07 20:48:44 +02:00
streams = hdsparse(copy.copy(self.options), self.http.request("get", manifest_url, params={"hdcore": "3.7.0"}),
manifest_url)
if streams:
for n in list(streams.keys()):
yield streams[n]