mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
cf7380211f
fixes #394
84 lines
3.2 KiB
Python
84 lines
3.2 KiB
Python
from __future__ import absolute_import
|
|
import re
|
|
import os
|
|
import json
|
|
import xml.etree.ElementTree as ET
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.utils import is_py2_old
|
|
from svtplay_dl.error import ServiceError
|
|
from svtplay_dl.log import log
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
|
|
|
|
# This is _very_ similar to mtvservices..
|
|
class Mtvnn(Service, OpenGraphThumbMixin):
|
|
supported_domains = ['nickelodeon.se', "nickelodeon.nl", "nickelodeon.no", "www.comedycentral.se", "nickelodeon.dk"]
|
|
|
|
def get(self):
|
|
data = self.get_urldata()
|
|
match = re.search(r'data-mrss=[\'"](http://api.mtvnn.com/v2/mrss.xml[^\'"]+)[\'"]', data)
|
|
if not match:
|
|
yield ServiceError("Can't find id for the video")
|
|
return
|
|
|
|
data = self.http.request("get", match.group(1)).content
|
|
xml = ET.XML(data)
|
|
mediagen = xml.find("channel").find("item").find("{http://search.yahoo.com/mrss/}group")
|
|
title = xml.find("channel").find("item").find("title").text
|
|
if self.options.output_auto:
|
|
directory = os.path.dirname(self.options.output)
|
|
if len(directory):
|
|
self.options.output = os.path.join(directory, title)
|
|
else:
|
|
self.options.output = title
|
|
|
|
if self.exclude():
|
|
yield ServiceError("Excluding video")
|
|
return
|
|
|
|
swfurl = mediagen.find("{http://search.yahoo.com/mrss/}player").attrib["url"]
|
|
self.options.other = "-W %s" % self.http.check_redirect(swfurl)
|
|
|
|
contenturl = mediagen.find("{http://search.yahoo.com/mrss/}content").attrib["url"]
|
|
filename = os.path.basename(contenturl)
|
|
data = self.http.request("get", "http://videos.mtvnn.com/api/v2/%s.js?video_format=hls" % filename).text
|
|
dataj = json.loads(data)
|
|
content = self.http.request("get", contenturl).content
|
|
xml = ET.XML(content)
|
|
ss = xml.find("video").find("item")
|
|
if is_py2_old:
|
|
sa = list(ss.getiterator("rendition"))
|
|
else:
|
|
sa = list(ss.iter("rendition"))
|
|
|
|
for i in sa:
|
|
yield RTMP(self.options, i.find("src").text, i.attrib["bitrate"])
|
|
streams = hlsparse(self.options, self.http.request("get", dataj["src"]), dataj["src"])
|
|
if streams:
|
|
for n in list(streams.keys()):
|
|
yield streams[n]
|
|
|
|
def find_all_episodes(self, options):
|
|
match = re.search(r"data-franchise='([^']+)'", self.get_urldata())
|
|
if match is None:
|
|
log.error("Couldn't program id")
|
|
return
|
|
programid = match.group(1)
|
|
match = re.findall(r"<li class='([a-z]+ )?playlist-item( [a-z]+)*?'( data-[-a-z]+='[^']+')* data-item-id='([^']+)'", self.get_urldata())
|
|
if not match:
|
|
log.error("Couldn't retrieve episode list")
|
|
return
|
|
episodNr = []
|
|
for i in match:
|
|
episodNr.append(i[3])
|
|
episodes = []
|
|
n = 0
|
|
for i in sorted(episodNr):
|
|
if n == options.all_last:
|
|
break
|
|
episodes.append("http://www.nickelodeon.se/serier/%s-something/videos/%s-something" % (programid, i))
|
|
n += 1
|
|
return episodes
|