2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
23 class WDRIE(InfoExtractor
):
24 _VALID_URL
= r
'https?://deviceids-medp\.wdr\.de/ondemand/\d+/(?P<id>\d+)\.js'
25 _GEO_COUNTRIES
= ['DE']
27 'url': 'http://deviceids-medp.wdr.de/ondemand/155/1557833.js',
31 'title': 'Biathlon-Staffel verpasst Podest bei Olympia-Generalprobe',
32 'upload_date': '20180112',
36 def _real_extract(self
, url
):
37 video_id
= self
._match
_id
(url
)
39 metadata
= self
._download
_json
(
40 url
, video_id
, transform_source
=strip_jsonp
)
42 is_live
= metadata
.get('mediaType') == 'live'
44 tracker_data
= metadata
['trackerData']
45 media_resource
= metadata
['mediaResource']
49 # check if the metadata contains a direct URL to a file
50 for kind
, media_resource
in media_resource
.items():
51 if kind
not in ('dflt', 'alt'):
54 for tag_name
, medium_url
in media_resource
.items():
55 if tag_name
not in ('videoURL', 'audioURL'):
58 ext
= determine_ext(medium_url
)
60 formats
.extend(self
._extract
_m
3u8_formats
(
61 medium_url
, video_id
, 'mp4', 'm3u8_native',
64 manifest_url
= update_url_query(
65 medium_url
, {'hdcore': '3.2.0', 'plugin': 'aasp-3.2.0.77.18'})
66 formats
.extend(self
._extract
_f
4m
_formats
(
67 manifest_url
, video_id
, f4m_id
='hds', fatal
=False))
69 formats
.extend(self
._extract
_smil
_formats
(
70 medium_url
, 'stream', fatal
=False))
75 if ext
== 'unknown_video':
76 urlh
= self
._request
_webpage
(
77 medium_url
, video_id
, note
='Determining extension')
78 ext
= urlhandle_detect_ext(urlh
)
80 formats
.append(a_format
)
82 self
._sort
_formats
(formats
)
85 caption_url
= media_resource
.get('captionURL')
92 title
= tracker_data
['trackerClipTitle']
95 'id': tracker_data
.get('trackerClipId', video_id
),
96 'title': self
._live
_title
(title
) if is_live
else title
,
97 'alt_title': tracker_data
.get('trackerClipSubcategory'),
99 'subtitles': subtitles
,
100 'upload_date': unified_strdate(tracker_data
.get('trackerClipAirTime')),
105 class WDRPageIE(InfoExtractor
):
106 _CURRENT_MAUS_URL
= r
'https?://(?:www\.)wdrmaus.de/(?:[^/]+/){1,2}[^/?#]+\.php5'
107 _PAGE_REGEX
= r
'/(?:mediathek/)?(?:[^/]+/)*(?P<display_id>[^/]+)\.html'
108 _VALID_URL
= r
'https?://(?:www\d?\.)?(?:wdr\d?|sportschau)\.de' + _PAGE_REGEX
+ '|' + _CURRENT_MAUS_URL
112 'url': 'http://www1.wdr.de/mediathek/video/sendungen/doku-am-freitag/video-geheimnis-aachener-dom-100.html',
113 # HDS download, MD5 is unstable
117 'display_id': 'doku-am-freitag/video-geheimnis-aachener-dom-100',
118 'title': 'Geheimnis Aachener Dom',
119 'alt_title': 'Doku am Freitag',
120 'upload_date': '20160304',
121 'description': 'md5:87be8ff14d8dfd7a7ee46f0299b52318',
123 'subtitles': {'de': [{
124 'url': 'http://ondemand-ww.wdr.de/medp/fsk0/105/1058683/1058683_12220974.xml',
128 'skip': 'HTTP Error 404: Not Found',
131 'url': 'http://www1.wdr.de/mediathek/audio/wdr3/wdr3-gespraech-am-samstag/audio-schriftstellerin-juli-zeh-100.html',
132 'md5': 'f4c1f96d01cf285240f53ea4309663d8',
136 'display_id': 'wdr3-gespraech-am-samstag/audio-schriftstellerin-juli-zeh-100',
137 'title': 'Schriftstellerin Juli Zeh',
138 'alt_title': 'WDR 3 Gespräch am Samstag',
139 'upload_date': '20160312',
140 'description': 'md5:e127d320bc2b1f149be697ce044a3dd7',
144 'skip': 'HTTP Error 404: Not Found',
147 'url': 'http://www1.wdr.de/mediathek/video/live/index.html',
151 'title': r
're:^WDR Fernsehen im Livestream \(nur in Deutschland erreichbar\) [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
152 'alt_title': 'WDR Fernsehen Live',
153 'upload_date': '20150101',
157 'skip_download': True, # m3u8 download
161 'url': 'http://www1.wdr.de/mediathek/video/sendungen/aktuelle-stunde/aktuelle-stunde-120.html',
162 'playlist_mincount': 7,
164 'id': 'aktuelle-stunde-120',
168 'url': 'http://www.wdrmaus.de/aktuelle-sendung/index.php5',
172 'upload_date': 're:^[0-9]{8}$',
173 'title': 're:^Die Sendung mit der Maus vom [0-9.]{10}$',
175 'skip': 'The id changes from week to week because of the new episode'
178 'url': 'http://www.wdrmaus.de/filme/sachgeschichten/achterbahn.php5',
179 'md5': '803138901f6368ee497b4d195bb164f2',
183 'upload_date': '20130919',
184 'title': 'Sachgeschichte - Achterbahn ',
188 'url': 'http://www1.wdr.de/radio/player/radioplayer116~_layout-popupVersion.html',
189 # Live stream, MD5 unstable
193 'title': r
're:^COSMO Livestream [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
194 'upload_date': '20160101',
197 'skip_download': True, # m3u8 download
201 'url': 'http://www.sportschau.de/handballem2018/handball-nationalmannschaft-em-stolperstein-vorrunde-100.html',
205 'title': 'DHB-Vizepräsident Bob Hanning - "Die Weltspitze ist extrem breit"',
206 'upload_date': '20180111',
209 'skip_download': True,
213 'url': 'http://www.sportschau.de/handballem2018/audio-vorschau---die-handball-em-startet-mit-grossem-favoritenfeld-100.html',
214 'only_matching': True,
218 def _real_extract(self
, url
):
219 mobj
= re
.match(self
._VALID
_URL
, url
)
220 display_id
= mobj
.group('display_id')
221 webpage
= self
._download
_webpage
(url
, display_id
)
225 # Article with several videos
227 # for wdr.de the data-extension is in a tag with the class "mediaLink"
228 # for wdr.de radio players, in a tag with the class "wdrrPlayerPlayBtn"
229 # for wdrmaus, in a tag with the class "videoButton" (previously a link
230 # to the page in a multiline "videoLink"-tag)
231 for mobj
in re
.finditer(
234 (["\'])(?
:mediaLink|wdrrPlayerPlayBtn|videoButton
)\b.*?\
1[^
>]+|
235 (["\'])videoLink\b.*?\2[\s]*>\n[^\n]*
236 )data-extension=(["\'])(?P
<data
>(?
:(?
!\
3).)+)\
3
238 media_link_obj = self._parse_json(
239 mobj.group('data'), display_id, transform_source=js_to_json,
241 if not media_link_obj:
244 media_link_obj, lambda x: x['mediaObj']['url'], compat_str)
246 entries.append(self.url_result(jsonp_url, ie=WDRIE.ie_key()))
248 # Playlist (e.g. https://www1.wdr.de/mediathek/video/sendungen/aktuelle-stunde/aktuelle-stunde-120.html)
252 compat_urlparse.urljoin(url, mobj.group('href')),
253 ie=WDRPageIE.ie_key())
254 for mobj in re.finditer(
255 r'<a[^>]+\bhref=(["\'])(?P<href>(?:(?!\1).)+)\1[^>]+\bdata-extension=',
256 webpage) if re.match(self._PAGE_REGEX, mobj.group('href'))
259 return self.playlist_result(entries, playlist_id=display_id)
262 class WDRElefantIE(InfoExtractor):
263 _VALID_URL = r'https?://(?:www\.)wdrmaus\.de/elefantenseite/#(?P<id>.+)'
265 'url': 'http://www.wdrmaus.de/elefantenseite/#folge_ostern_2015',
267 'title': 'Folge Oster-Spezial 2015',
271 'upload_date': '20150406'
274 'skip_download': True,
278 def _real_extract(self, url):
279 display_id = self._match_id(url)
281 # Table of Contents seems to always be at this address, so fetch it directly.
282 # The website fetches configurationJS.php5, which links to tableOfContentsJS.php5.
283 table_of_contents = self._download_json(
284 'https://www.wdrmaus.de/elefantenseite/data/tableOfContentsJS.php5',
286 if display_id not in table_of_contents:
287 raise ExtractorError(
288 'No entry in site\'s table of contents for this URL. '
289 'Is the fragment part of the URL (after the #) correct?',
291 xml_metadata_path = table_of_contents[display_id]['xmlPath']
292 xml_metadata = self._download_xml(
293 'https://www.wdrmaus.de/elefantenseite/' + xml_metadata_path,
295 zmdb_url_element = xml_metadata.find('./movie/zmdb_url')
296 if zmdb_url_element is None:
297 raise ExtractorError(
298 '%s is not a video' % display_id, expected=True)
299 return self.url_result(zmdb_url_element.text, ie=WDRIE.ie_key())
302 class WDRMobileIE(InfoExtractor):
303 _VALID_URL = r'''(?x
)
304 https?
://mobile
-ondemand\
.wdr\
.de
/
305 .*?
/fsk(?P
<age_limit
>[0-9]+)
307 (?P
<id>[0-9]+)_(?P
<title
>[0-9]+)'''
308 IE_NAME = 'wdr:mobile'
310 'url': 'http://mobile-ondemand.wdr.de/CMS2010/mdb/ondemand/weltweit/fsk0/42/421735/421735_4283021.mp4',
317 'skip': 'Problems with loading data.'
320 def _real_extract(self, url):
321 mobj = re.match(self._VALID_URL, url)
323 'id': mobj.group('id'),
324 'title': mobj.group('title'),
325 'age_limit': int(mobj.group('age_limit')),
328 'User-Agent': 'mobile',