2 from __future__ import unicode_literals
6 from .common import InfoExtractor
15 class RTLnowIE(InfoExtractor):
16 """Information Extractor for RTL NOW, RTL2 NOW, RTL NITRO, SUPER RTL NOW, VOX NOW and n-tv NOW"""
24 (?:www\.)?rtlnitronow\.de|
25 (?:www\.)?superrtlnow\.de|
26 (?:www\.)?n-tvnow\.de)
27 /+[a-zA-Z0-9-]+/[a-zA-Z0-9-]+\.php\?
28 (?:container_id|film_id)=(?P<video_id>[0-9]+)&
29 player=1(?:&season=[0-9]+)?(?:&.*)?
34 'url': 'http://rtl-now.rtl.de/ahornallee/folge-1.php?film_id=90419&player=1&season=1',
38 'title': 'Ahornallee - Folge 1 - Der Einzug',
39 'description': 'md5:ce843b6b5901d9a7f7d04d1bbcdb12de',
40 'upload_date': '20070416',
44 'skip_download': True,
46 'skip': 'Only works from Germany',
49 'url': 'http://rtl2now.rtl2.de/aerger-im-revier/episode-15-teil-1.php?film_id=69756&player=1&season=2&index=5',
53 'title': 'Ärger im Revier - Ein junger Ladendieb, ein handfester Streit u.a.',
54 'description': 'md5:3fb247005ed21a935ffc82b7dfa70cf0',
55 'thumbnail': 'http://autoimg.static-fra.de/rtl2now/219850/1500x1500/image2.jpg',
56 'upload_date': '20120519',
60 'skip_download': True,
62 'skip': 'Only works from Germany',
65 'url': 'http://www.voxnow.de/voxtours/suedafrika-reporter-ii.php?film_id=13883&player=1&season=17',
69 'title': 'Voxtours - Südafrika-Reporter II',
70 'description': 'md5:de7f8d56be6fd4fed10f10f57786db00',
71 'upload_date': '20090627',
75 'skip_download': True,
79 'url': 'http://superrtlnow.de/medicopter-117/angst.php?film_id=99205&player=1',
83 'title': 'Medicopter 117 - Angst!',
84 'description': 'md5:895b1df01639b5f61a04fc305a5cb94d',
85 'thumbnail': 'http://autoimg.static-fra.de/superrtlnow/287529/1500x1500/image2.jpg',
86 'upload_date': '20080928',
90 'skip_download': True,
94 'url': 'http://www.n-tvnow.de/deluxe-alles-was-spass-macht/thema-ua-luxushotel-fuer-vierbeiner.php?container_id=153819&player=1&season=0',
98 'title': 'Deluxe - Alles was Spaß macht - Thema u.a.: Luxushotel für Vierbeiner',
99 'description': 'md5:c3705e1bb32e1a5b2bcd634fc065c631',
100 'thumbnail': 'http://autoimg.static-fra.de/ntvnow/383157/1500x1500/image2.jpg',
101 'upload_date': '20140221',
104 'skip': 'Only works from Germany',
108 def _real_extract(self, url):
109 mobj = re.match(self._VALID_URL, url)
110 video_page_url = 'http://%s/' % mobj.group('domain')
111 video_id = mobj.group('video_id')
113 webpage = self._download_webpage('http://' + mobj.group('url'), video_id)
115 mobj = re.search(r'(?s)<div style="margin-left: 20px; font-size: 13px;">(.*?)<div id="playerteaser">', webpage)
117 raise ExtractorError(clean_html(mobj.group(1)), expected=True)
119 title = self._og_search_title(webpage)
120 description = self._og_search_description(webpage)
121 thumbnail = self._og_search_thumbnail(webpage, default=None)
123 upload_date = unified_strdate(self._html_search_meta('uploadDate', webpage, 'upload date'))
125 mobj = re.search(r'<meta itemprop="duration" content="PT(?P<seconds>\d+)S" />', webpage)
126 duration = int(mobj.group('seconds')) if mobj else None
128 playerdata_url = self._html_search_regex(
129 r"'playerdata': '(?P<playerdata_url>[^']+)'", webpage, 'playerdata_url')
131 playerdata = self._download_xml(playerdata_url, video_id, 'Downloading player data XML')
133 videoinfo = playerdata.find('./playlist/videoinfo')
136 for filename in videoinfo.findall('filename'):
137 mobj = re.search(r'(?P<url>rtmpe://(?:[^/]+/){2})(?P<play_path>.+)', filename.text)
140 'url': mobj.group('url'),
141 'play_path': 'mp4:' + mobj.group('play_path'),
142 'page_url': video_page_url,
143 'player_url': video_page_url + 'includes/vodplayer.swf',
147 'url': filename.text,
150 'width': int_or_none(filename.get('width')),
151 'height': int_or_none(filename.get('height')),
152 'vbr': int_or_none(filename.get('bitrate')),
160 'description': description,
161 'thumbnail': thumbnail,
162 'upload_date': upload_date,
163 'duration': duration,