]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ard.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from .generic
import GenericIE
18 from ..compat
import compat_etree_fromstring
21 class ARDMediathekIE(InfoExtractor
):
22 IE_NAME
= 'ARD:mediathek'
23 _VALID_URL
= r
'^https?://(?:(?:www\.)?ardmediathek\.de|mediathek\.(?:daserste|rbb-online)\.de)/(?:.*/)(?P<video_id>[0-9]+|[^0-9][^/\?]+)[^/\?]*(?:\?.*)?'
26 'url': 'http://www.ardmediathek.de/tv/Dokumentation-und-Reportage/Ich-liebe-das-Leben-trotzdem/rbb-Fernsehen/Video?documentId=29582122&bcastId=3822114',
30 'title': 'Ich liebe das Leben trotzdem',
31 'description': 'md5:45e4c225c72b27993314b31a84a5261c',
36 'skip_download': True,
38 'skip': 'HTTP Error 404: Not Found',
40 'url': 'http://www.ardmediathek.de/tv/Tatort/Tatort-Scheinwelten-H%C3%B6rfassung-Video/Das-Erste/Video?documentId=29522730&bcastId=602916',
41 'md5': 'f4d98b10759ac06c0072bbcd1f0b9e3e',
45 'title': 'Tatort: Scheinwelten - Hörfassung (Video tgl. ab 20 Uhr)',
46 'description': 'md5:196392e79876d0ac94c94e8cdb2875f1',
49 'skip': 'HTTP Error 404: Not Found',
52 'url': 'http://www.ardmediathek.de/tv/WDR-H%C3%B6rspiel-Speicher/Tod-eines-Fu%C3%9Fballers/WDR-3/Audio-Podcast?documentId=28488308&bcastId=23074086',
53 'md5': '219d94d8980b4f538c7fcb0865eb7f2c',
57 'title': 'Tod eines Fußballers',
58 'description': 'md5:f6e39f3461f0e1f54bfa48c8875c86ef',
61 'skip': 'HTTP Error 404: Not Found',
63 'url': 'http://mediathek.daserste.de/sendungen_a-z/328454_anne-will/22429276_vertrauen-ist-gut-spionieren-ist-besser-geht',
64 'only_matching': True,
67 'url': 'http://mediathek.rbb-online.de/radio/Hörspiel/Vor-dem-Fest/kulturradio/Audio?documentId=30796318&topRessort=radio&bcastId=9839158',
68 'md5': '4e8f00631aac0395fee17368ac0e9867',
72 'title': 'Vor dem Fest',
73 'description': 'md5:c0c1c8048514deaed2a73b3a60eecacb',
76 'skip': 'Video is no longer available',
79 def _extract_media_info(self
, media_info_url
, webpage
, video_id
):
80 media_info
= self
._download
_json
(
81 media_info_url
, video_id
, 'Downloading media JSON')
83 formats
= self
._extract
_formats
(media_info
, video_id
)
86 if '"fsk"' in webpage
:
88 'This video is only available after 20:00', expected
=True)
89 elif media_info
.get('_geoblocked'):
90 raise ExtractorError('This video is not available due to geo restriction', expected
=True)
92 self
._sort
_formats
(formats
)
94 duration
= int_or_none(media_info
.get('_duration'))
95 thumbnail
= media_info
.get('_previewImage')
98 subtitle_url
= media_info
.get('_subtitleUrl')
107 'duration': duration
,
108 'thumbnail': thumbnail
,
110 'subtitles': subtitles
,
113 def _extract_formats(self
, media_info
, video_id
):
114 type_
= media_info
.get('_type')
115 media_array
= media_info
.get('_mediaArray', [])
117 for num
, media
in enumerate(media_array
):
118 for stream
in media
.get('_mediaStreamArray', []):
119 stream_urls
= stream
.get('_stream')
122 if not isinstance(stream_urls
, list):
123 stream_urls
= [stream_urls
]
124 quality
= stream
.get('_quality')
125 server
= stream
.get('_server')
126 for stream_url
in stream_urls
:
127 ext
= determine_ext(stream_url
)
128 if quality
!= 'auto' and ext
in ('f4m', 'm3u8'):
131 formats
.extend(self
._extract
_f
4m
_formats
(
132 update_url_query(stream_url
, {
134 'plugin': 'aasp-3.1.1.69.124'
136 video_id
, f4m_id
='hds', fatal
=False))
138 formats
.extend(self
._extract
_m
3u8_formats
(
139 stream_url
, video_id
, 'mp4', m3u8_id
='hls', fatal
=False))
141 if server
and server
.startswith('rtmp'):
144 'play_path': stream_url
,
145 'format_id': 'a%s-rtmp-%s' % (num
, quality
),
147 elif stream_url
.startswith('http'):
150 'format_id': 'a%s-%s-%s' % (num
, ext
, quality
)
154 m
= re
.search(r
'_(?P<width>\d+)x(?P<height>\d+)\.mp4$', stream_url
)
157 'width': int(m
.group('width')),
158 'height': int(m
.group('height')),
165 def _real_extract(self
, url
):
166 # determine video id from url
167 m
= re
.match(self
._VALID
_URL
, url
)
169 numid
= re
.search(r
'documentId=([0-9]+)', url
)
171 video_id
= numid
.group(1)
173 video_id
= m
.group('video_id')
175 webpage
= self
._download
_webpage
(url
, video_id
)
178 ('>Leider liegt eine Störung vor.', 'Video %s is unavailable'),
179 ('>Der gewünschte Beitrag ist nicht mehr verfügbar.<',
180 'Video %s is no longer available'),
183 for pattern
, message
in ERRORS
:
184 if pattern
in webpage
:
185 raise ExtractorError(message
% video_id
, expected
=True)
187 if re
.search(r
'[\?&]rss($|[=&])', url
):
188 doc
= compat_etree_fromstring(webpage
.encode('utf-8'))
190 return GenericIE()._extract
_rss
(url
, video_id
, doc
)
192 title
= self
._html
_search
_regex
(
193 [r
'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>',
194 r
'<meta name="dcterms.title" content="(.*?)"/>',
195 r
'<h4 class="headline">(.*?)</h4>'],
197 description
= self
._html
_search
_meta
(
198 'dcterms.abstract', webpage
, 'description', default
=None)
199 if description
is None:
200 description
= self
._html
_search
_meta
(
201 'description', webpage
, 'meta description')
203 # Thumbnail is sometimes not present.
204 # It is in the mobile version, but that seems to use a different URL
205 # structure altogether.
206 thumbnail
= self
._og
_search
_thumbnail
(webpage
, default
=None)
208 media_streams
= re
.findall(r
'''(?x)
209 mediaCollection\.addMediaStream\([0-9]+,\s*[0-9]+,\s*"[^"]*",\s*
210 "([^"]+)"''', webpage
)
213 QUALITIES
= qualities(['lo', 'hi', 'hq'])
215 for furl
in set(media_streams
):
216 if furl
.endswith('.f4m'):
219 fid_m
= re
.match(r
'.*\.([^.]+)\.[^.]+$', furl
)
220 fid
= fid_m
.group(1) if fid_m
else None
222 'quality': QUALITIES(fid
),
226 self
._sort
_formats
(formats
)
230 else: # request JSON file
231 info
= self
._extract
_media
_info
(
232 'http://www.ardmediathek.de/play/media/%s' % video_id
, webpage
, video_id
)
237 'description': description
,
238 'thumbnail': thumbnail
,
244 class ARDIE(InfoExtractor
):
245 _VALID_URL
= r
'(?P<mainurl>https?://(www\.)?daserste\.de/[^?#]+/videos/(?P<display_id>[^/?#]+)-(?P<id>[0-9]+))\.html'
247 'url': 'http://www.daserste.de/information/reportage-dokumentation/dokus/videos/die-story-im-ersten-mission-unter-falscher-flagge-100.html',
248 'md5': 'd216c3a86493f9322545e045ddc3eb35',
250 'display_id': 'die-story-im-ersten-mission-unter-falscher-flagge',
254 'title': 'Die Story im Ersten: Mission unter falscher Flagge',
255 'upload_date': '20140804',
256 'thumbnail': r
're:^https?://.*\.jpg$',
258 'skip': 'HTTP Error 404: Not Found',
261 def _real_extract(self
, url
):
262 mobj
= re
.match(self
._VALID
_URL
, url
)
263 display_id
= mobj
.group('display_id')
265 player_url
= mobj
.group('mainurl') + '~playerXml.xml'
266 doc
= self
._download
_xml
(player_url
, display_id
)
267 video_node
= doc
.find('./video')
268 upload_date
= unified_strdate(xpath_text(
269 video_node
, './broadcastDate'))
270 thumbnail
= xpath_text(video_node
, './/teaserImage//variant/url')
273 for a
in video_node
.findall('.//asset'):
275 'format_id': a
.attrib
['type'],
276 'width': int_or_none(a
.find('./frameWidth').text
),
277 'height': int_or_none(a
.find('./frameHeight').text
),
278 'vbr': int_or_none(a
.find('./bitrateVideo').text
),
279 'abr': int_or_none(a
.find('./bitrateAudio').text
),
280 'vcodec': a
.find('./codecVideo').text
,
281 'tbr': int_or_none(a
.find('./totalBitrate').text
),
283 if a
.find('./serverPrefix').text
:
284 f
['url'] = a
.find('./serverPrefix').text
285 f
['playpath'] = a
.find('./fileName').text
287 f
['url'] = a
.find('./fileName').text
289 self
._sort
_formats
(formats
)
292 'id': mobj
.group('id'),
294 'display_id': display_id
,
295 'title': video_node
.find('./title').text
,
296 'duration': parse_duration(video_node
.find('./duration').text
),
297 'upload_date': upload_date
,
298 'thumbnail': thumbnail
,