]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/orf.py
2 from __future__
import unicode_literals
6 from . common
import InfoExtractor
7 from .. compat
import compat_str
24 class ORFTVthekIE ( InfoExtractor
):
25 IE_NAME
= 'orf:tvthek'
26 IE_DESC
= 'ORF TVthek'
27 _VALID_URL
= r
'https?://tvthek\.orf\.at/(?:[^/]+/)+(?P<id>\d+)'
30 'url' : 'http://tvthek.orf.at/program/Aufgetischt/2745173/Aufgetischt-Mit-der-Steirischen-Tafelrunde/8891389' ,
32 'md5' : '2942210346ed779588f428a92db88712' ,
36 'title' : 'Aufgetischt: Mit der Steirischen Tafelrunde' ,
37 'description' : 'md5:c1272f0245537812d4e36419c207b67d' ,
39 'upload_date' : '20141208' ,
42 'skip' : 'Blocked outside of Austria / Germany' ,
44 'url' : 'http://tvthek.orf.at/topic/Im-Wandel-der-Zeit/8002126/Best-of-Ingrid-Thurnher/7982256' ,
48 'title' : 'Best of Ingrid Thurnher' ,
49 'upload_date' : '20140527' ,
50 'description' : 'Viele Jahre war Ingrid Thurnher das "Gesicht" der ZIB 2. Vor ihrem Wechsel zur ZIB 2 im Jahr 1995 moderierte sie unter anderem "Land und Leute", "Österreich-Bild" und "Niederösterreich heute".' ,
53 'skip_download' : True , # rtsp downloads
55 'skip' : 'Blocked outside of Austria / Germany' ,
57 'url' : 'http://tvthek.orf.at/topic/Fluechtlingskrise/10463081/Heimat-Fremde-Heimat/13879132/Senioren-betreuen-Migrantenkinder/13879141' ,
58 'only_matching' : True ,
60 'url' : 'http://tvthek.orf.at/profile/Universum/35429' ,
61 'only_matching' : True ,
64 def _real_extract ( self
, url
):
65 playlist_id
= self
._ match
_ id
( url
)
66 webpage
= self
._ download
_ webpage
( url
, playlist_id
)
68 data_jsb
= self
._ parse
_ json
(
70 r
'<div[^>]+class=(["\' ]).* ?VideoPlaylist
.* ?\
1 [ ^
>]+ data
- jsb
=([ " \' ])(?P<json>.+?)\2',
71 webpage, 'playlist', group='json'),
72 playlist_id, transform_source=unescapeHTML)['playlist']['videos']
76 video_id, title = sd.get('id'), sd.get('title')
77 if not video_id or not title:
79 video_id = compat_str(video_id)
81 for fd in sd['sources']:
82 src = url_or_none(fd.get('src'))
86 for key in ('delivery', 'quality', 'quality_string'):
89 format_id_list.append(value)
90 format_id = '-'.join(format_id_list)
91 ext = determine_ext(src)
93 m3u8_formats = self._extract_m3u8_formats(
94 src, video_id, 'mp4', m3u8_id=format_id, fatal=False)
95 if any('/geoprotection' in f['url'] for f in m3u8_formats):
96 self.raise_geo_restricted()
97 formats.extend(m3u8_formats)
99 formats.extend(self._extract_f4m_formats(
100 src, video_id, f4m_id=format_id, fatal=False))
103 'format_id': format_id,
105 'protocol': fd.get('protocol'),
108 # Check for geoblocking.
109 # There is a property is_geoprotection, but that's always false
110 geo_str = sd.get('geoprotection_string')
116 if re.match(r'^https?://.*\.mp4$', f['url']))
117 except StopIteration:
120 req = HEADRequest(http_url)
121 self._request_webpage(
123 note='Testing for geoblocking',
125 'This video seems to be blocked outside of %s . '
126 'You may want to try the streaming-* formats.')
130 self._check_formats(formats, video_id)
131 self._sort_formats(formats)
134 for sub in sd.get('subtitles', []):
135 sub_src = sub.get('src')
138 subtitles.setdefault(sub.get('lang', 'de-AT'), []).append({
142 upload_date = unified_strdate(sd.get('created_date'))
148 'subtitles': subtitles,
149 'description': sd.get('description'),
150 'duration': int_or_none(sd.get('duration_in_seconds')),
151 'upload_date': upload_date,
152 'thumbnail': sd.get('image_full_url'),
162 class ORFRadioIE(InfoExtractor):
163 def _real_extract(self, url):
164 mobj = re.match(self._VALID_URL, url)
165 station = mobj.group('station')
166 show_date = mobj.group('date')
167 show_id = mobj.group('show')
169 data = self._download_json(
170 'http://audioapi.orf.at/ %s /api/json/current/broadcast/ %s / %s '
171 % (station, show_id, show_date), show_id)
174 for info in data['streams']:
175 loop_stream_id = str_or_none(info.get('loopStreamId'))
176 if not loop_stream_id:
178 title = str_or_none(data.get('title'))
181 start = int_or_none(info.get('start'), scale=1000)
182 end = int_or_none(info.get('end'), scale=1000)
183 duration = end - start if end and start else None
185 'id': loop_stream_id.replace('.mp3', ''),
186 'url': 'http://loopstream01.apa.at/?channel= %s &id= %s ' % (station, loop_stream_id),
188 'description': clean_html(data.get('subtitle')),
189 'duration': duration,
192 'series': data.get('programTitle'),
198 'title': data.get('title'),
199 'description': clean_html(data.get('subtitle')),
204 class ORFFM4IE(ORFRadioIE):
206 IE_DESC = 'radio FM4'
207 _VALID_URL = r'https?://(?P<station>fm4)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>4\w+)'
210 'url': 'http://fm4.orf.at/player/20170107/4CC',
211 'md5': '2b0be47375432a7ef104453432a19212',
213 'id': '2017-01-07_2100_tl_54_7DaysSat18_31295',
215 'title': 'Solid Steel Radioshow',
216 'description': 'Die Mixshow von Coldcut und Ninja Tune.',
218 'timestamp': 1483819257,
219 'upload_date': '20170107',
221 'skip': 'Shows from ORF radios are only available for 7 days.',
222 'only_matching': True,
226 class ORFOE1IE(ORFRadioIE):
228 IE_DESC = 'Radio Österreich 1'
229 _VALID_URL = r'https?://(?P<station>oe1)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>\w+)'
232 'url': 'http://oe1.orf.at/player/20170108/456544',
233 'md5': '34d8a6e67ea888293741c86a099b745b',
235 'id': '2017-01-08_0759_tl_51_7DaysSun6_256141',
237 'title': 'Morgenjournal',
239 'timestamp': 1483858796,
240 'upload_date': '20170108',
242 'skip': 'Shows from ORF radios are only available for 7 days.'
246 class ORFIPTVIE(InfoExtractor):
248 IE_DESC = 'iptv.ORF.at'
249 _VALID_URL = r'https?://iptv\.orf\.at/(?:#/)?stories/(?P<id>\d+)'
252 'url': 'http://iptv.orf.at/stories/2275236/',
253 'md5': 'c8b22af4718a4b4af58342529453e3e5',
257 'title': 'Weitere Evakuierungen um Vulkan Calbuco',
258 'description': 'md5:d689c959bdbcf04efeddedbf2299d633',
260 'thumbnail': r're:^https?://.*\.jpg$',
261 'upload_date': '20150425',
265 def _real_extract(self, url):
266 story_id = self._match_id(url)
268 webpage = self._download_webpage(
269 'http://iptv.orf.at/stories/ %s ' % story_id, story_id)
271 video_id = self._search_regex(
272 r'data-video(?:id)?=" ( \d
+) "', webpage, 'video id')
274 data = self._download_json(
275 'http://bits.orf.at/filehandler/static-api/json/current/data.json?file= %s ' % video_id,
278 duration = float_or_none(data['duration'], 1000)
280 video = data['sources']['default']
281 load_balancer_url = video['loadBalancerUrl']
282 abr = int_or_none(video.get('audioBitrate'))
283 vbr = int_or_none(video.get('bitrate'))
284 fps = int_or_none(video.get('videoFps'))
285 width = int_or_none(video.get('videoWidth'))
286 height = int_or_none(video.get('videoHeight'))
287 thumbnail = video.get('preview')
289 rendition = self._download_json(
290 load_balancer_url, video_id, transform_source=strip_jsonp)
301 for format_id, format_url in rendition['redirect'].items():
302 if format_id == 'rtmp':
306 'format_id': format_id,
309 elif determine_ext(format_url) == 'f4m':
310 formats.extend(self._extract_f4m_formats(
311 format_url, video_id, f4m_id=format_id))
312 elif determine_ext(format_url) == 'm3u8':
313 formats.extend(self._extract_m3u8_formats(
314 format_url, video_id, 'mp4', m3u8_id=format_id))
317 self._sort_formats(formats)
319 title = remove_end(self._og_search_title(webpage), ' - iptv.ORF.at')
320 description = self._og_search_description(webpage)
321 upload_date = unified_strdate(self._html_search_meta(
322 'dc.date', webpage, 'upload date'))
327 'description': description,
328 'duration': duration,
329 'thumbnail': thumbnail,
330 'upload_date': upload_date,
335 class ORFFM4StoryIE(InfoExtractor):
336 IE_NAME = 'orf:fm4:story'
337 IE_DESC = 'fm4.orf.at stories'
338 _VALID_URL = r'https?://fm4\.orf\.at/stories/(?P<id>\d+)'
341 'url': 'http://fm4.orf.at/stories/2865738/',
343 'md5': 'e1c2c706c45c7b34cf478bbf409907ca',
347 'title': 'Manu Delago und Inner Tongue live',
348 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.',
350 'thumbnail': r're:^https?://.*\.jpg$',
351 'upload_date': '20170913',
354 'md5': 'c6dd2179731f86f4f55a7b49899d515f',
358 'title': 'Manu Delago und Inner Tongue live (2)',
360 'thumbnail': r're:^https?://.*\.jpg$',
361 'upload_date': '20170913',
362 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.',
367 def _real_extract(self, url):
368 story_id = self._match_id(url)
369 webpage = self._download_webpage(url, story_id)
372 all_ids = orderedSet(re.findall(r'data-video(?:id)?=" ( \d
+) "', webpage))
373 for idx, video_id in enumerate(all_ids):
374 data = self._download_json(
375 'http://bits.orf.at/filehandler/static-api/json/current/data.json?file= %s ' % video_id,
378 duration = float_or_none(data['duration'], 1000)
380 video = data['sources']['q8c']
381 load_balancer_url = video['loadBalancerUrl']
382 abr = int_or_none(video.get('audioBitrate'))
383 vbr = int_or_none(video.get('bitrate'))
384 fps = int_or_none(video.get('videoFps'))
385 width = int_or_none(video.get('videoWidth'))
386 height = int_or_none(video.get('videoHeight'))
387 thumbnail = video.get('preview')
389 rendition = self._download_json(
390 load_balancer_url, video_id, transform_source=strip_jsonp)
401 for format_id, format_url in rendition['redirect'].items():
402 if format_id == 'rtmp':
406 'format_id': format_id,
409 elif determine_ext(format_url) == 'f4m':
410 formats.extend(self._extract_f4m_formats(
411 format_url, video_id, f4m_id=format_id))
412 elif determine_ext(format_url) == 'm3u8':
413 formats.extend(self._extract_m3u8_formats(
414 format_url, video_id, 'mp4', m3u8_id=format_id))
417 self._sort_formats(formats)
419 title = remove_end(self._og_search_title(webpage), ' - fm4.ORF.at')
421 # Titles are duplicates, make them unique
422 title += ' (' + str(idx + 1) + ')'
423 description = self._og_search_description(webpage)
424 upload_date = unified_strdate(self._html_search_meta(
425 'dc.date', webpage, 'upload date'))
430 'description': description,
431 'duration': duration,
432 'thumbnail': thumbnail,
433 'upload_date': upload_date,
437 return self.playlist_result(entries)