PEP8 applied
[youtube-dl] / youtube_dl / extractor / rtlnow.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import (
8     ExtractorError,
9     clean_html,
10     unified_strdate,
11     int_or_none,
12 )
13
14
15 class RTLnowIE(InfoExtractor):
16     """Information Extractor for RTL NOW, RTL2 NOW, RTL NITRO, SUPER RTL NOW, VOX NOW and n-tv NOW"""
17     _VALID_URL = r'''(?x)
18                         (?:https?://)?
19                         (?P<url>
20                             (?P<domain>
21                                 rtl-now\.rtl\.de|
22                                 rtl2now\.rtl2\.de|
23                                 (?:www\.)?voxnow\.de|
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]+)?(?:&.*)?
30                         )'''
31
32     _TESTS = [
33         {
34             'url': 'http://rtl-now.rtl.de/ahornallee/folge-1.php?film_id=90419&player=1&season=1',
35             'info_dict': {
36                 'id': '90419',
37                 'ext': 'flv',
38                 'title': 'Ahornallee - Folge 1 - Der Einzug',
39                 'description': 'md5:ce843b6b5901d9a7f7d04d1bbcdb12de',
40                 'upload_date': '20070416',
41                 'duration': 1685,
42             },
43             'params': {
44                 'skip_download': True,
45             },
46             'skip': 'Only works from Germany',
47         },
48         {
49             'url': 'http://rtl2now.rtl2.de/aerger-im-revier/episode-15-teil-1.php?film_id=69756&player=1&season=2&index=5',
50             'info_dict': {
51                 'id': '69756',
52                 'ext': 'flv',
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',
57                 'duration': 1245,
58             },
59             'params': {
60                 'skip_download': True,
61             },
62             'skip': 'Only works from Germany',
63         },
64         {
65             'url': 'http://www.voxnow.de/voxtours/suedafrika-reporter-ii.php?film_id=13883&player=1&season=17',
66             'info_dict': {
67                 'id': '13883',
68                 'ext': 'flv',
69                 'title': 'Voxtours - Südafrika-Reporter II',
70                 'description': 'md5:de7f8d56be6fd4fed10f10f57786db00',
71                 'upload_date': '20090627',
72                 'duration': 1800,
73             },
74             'params': {
75                 'skip_download': True,
76             },
77         },
78         {
79             'url': 'http://superrtlnow.de/medicopter-117/angst.php?film_id=99205&player=1',
80             'info_dict': {
81                 'id': '99205',
82                 'ext': 'flv',
83                 'title': 'Medicopter 117 - Angst!',
84                 'description': 're:^Im Therapiezentrum \'Sonnalm\' kommen durch eine Unachtsamkeit die für die B.handlung mit Phobikern gehaltenen Voglespinnen frei\. Eine Ausreißerin',
85                 'thumbnail': 'http://autoimg.static-fra.de/superrtlnow/287529/1500x1500/image2.jpg',
86                 'upload_date': '20080928',
87                 'duration': 2691,
88             },
89             'params': {
90                 'skip_download': True,
91             },
92         },
93         {
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',
95             'only_matching': True,
96         },
97     ]
98
99     def _real_extract(self, url):
100         mobj = re.match(self._VALID_URL, url)
101         video_page_url = 'http://%s/' % mobj.group('domain')
102         video_id = mobj.group('video_id')
103
104         webpage = self._download_webpage('http://' + mobj.group('url'), video_id)
105
106         mobj = re.search(r'(?s)<div style="margin-left: 20px; font-size: 13px;">(.*?)<div id="playerteaser">', webpage)
107         if mobj:
108             raise ExtractorError(clean_html(mobj.group(1)), expected=True)
109
110         title = self._og_search_title(webpage)
111         description = self._og_search_description(webpage)
112         thumbnail = self._og_search_thumbnail(webpage, default=None)
113
114         upload_date = unified_strdate(self._html_search_meta('uploadDate', webpage, 'upload date'))
115
116         mobj = re.search(r'<meta itemprop="duration" content="PT(?P<seconds>\d+)S" />', webpage)
117         duration = int(mobj.group('seconds')) if mobj else None
118
119         playerdata_url = self._html_search_regex(
120             r"'playerdata': '(?P<playerdata_url>[^']+)'", webpage, 'playerdata_url')
121
122         playerdata = self._download_xml(playerdata_url, video_id, 'Downloading player data XML')
123
124         videoinfo = playerdata.find('./playlist/videoinfo')
125
126         formats = []
127         for filename in videoinfo.findall('filename'):
128             mobj = re.search(r'(?P<url>rtmpe://(?:[^/]+/){2})(?P<play_path>.+)', filename.text)
129             if mobj:
130                 fmt = {
131                     'url': mobj.group('url'),
132                     'play_path': 'mp4:' + mobj.group('play_path'),
133                     'page_url': video_page_url,
134                     'player_url': video_page_url + 'includes/vodplayer.swf',
135                 }
136             else:
137                 fmt = {
138                     'url': filename.text,
139                 }
140             fmt.update({
141                 'width': int_or_none(filename.get('width')),
142                 'height': int_or_none(filename.get('height')),
143                 'vbr': int_or_none(filename.get('bitrate')),
144                 'ext': 'flv',
145             })
146             formats.append(fmt)
147
148         return {
149             'id': video_id,
150             'title': title,
151             'description': description,
152             'thumbnail': thumbnail,
153             'upload_date': upload_date,
154             'duration': duration,
155             'formats': formats,
156         }