]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/dfb.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
6 from ..utils
import unified_strdate
9 class DFBIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://tv\.dfb\.de/video/(?P<display_id>[^/]+)/(?P<id>\d+)'
14 'url': 'http://tv.dfb.de/video/u-19-em-stimmen-zum-spiel-gegen-russland/11633/',
15 'md5': 'ac0f98a52a330f700b4b3034ad240649',
18 'display_id': 'u-19-em-stimmen-zum-spiel-gegen-russland',
20 'title': 'U 19-EM: Stimmen zum Spiel gegen Russland',
21 'upload_date': '20150714',
25 def _real_extract(self
, url
):
26 display_id
, video_id
= re
.match(self
._VALID
_URL
, url
).groups()
28 player_info
= self
._download
_xml
(
29 'http://tv.dfb.de/server/hd_video.php?play=%s' % video_id
,
31 video_info
= player_info
.find('video')
32 stream_access_url
= self
._proto
_relative
_url
(video_info
.find('url').text
.strip())
35 # see http://tv.dfb.de/player/js/ajax.js for the method to extract m3u8 formats
36 for sa_url
in (stream_access_url
, stream_access_url
+ '&area=&format=iphone'):
37 stream_access_info
= self
._download
_xml
(sa_url
, display_id
)
38 token_el
= stream_access_info
.find('token')
39 manifest_url
= token_el
.attrib
['url'] + '?' + 'hdnea=' + token_el
.attrib
['auth']
40 if '.f4m' in manifest_url
:
41 formats
.extend(self
._extract
_f
4m
_formats
(
42 manifest_url
+ '&hdcore=3.2.0',
43 display_id
, f4m_id
='hds', fatal
=False))
45 formats
.extend(self
._extract
_m
3u8_formats
(
46 manifest_url
, display_id
, 'mp4',
47 'm3u8_native', m3u8_id
='hls', fatal
=False))
48 self
._sort
_formats
(formats
)
52 'display_id': display_id
,
53 'title': video_info
.find('title').text
,
54 'thumbnail': 'http://tv.dfb.de/images/%s_640x360.jpg' % video_id
,
55 'upload_date': unified_strdate(video_info
.find('time_date').text
),