]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/dfb.py
[ie/orf:on] Improve extraction (#9677)
[yt-dlp.git] / yt_dlp / extractor / dfb.py
CommitLineData
74aa18f6 1from .common import InfoExtractor
ddcdc684 2from ..utils import unified_strdate
74aa18f6
JMF
3
4
5class DFBIE(InfoExtractor):
6 IE_NAME = 'tv.dfb.de'
ddcdc684 7 _VALID_URL = r'https?://tv\.dfb\.de/video/(?P<display_id>[^/]+)/(?P<id>\d+)'
74aa18f6
JMF
8
9 _TEST = {
eae89f92 10 'url': 'http://tv.dfb.de/video/u-19-em-stimmen-zum-spiel-gegen-russland/11633/',
65a3bfb3 11 'md5': 'ac0f98a52a330f700b4b3034ad240649',
74aa18f6 12 'info_dict': {
eae89f92 13 'id': '11633',
ddcdc684 14 'display_id': 'u-19-em-stimmen-zum-spiel-gegen-russland',
65a3bfb3 15 'ext': 'mp4',
eae89f92
S
16 'title': 'U 19-EM: Stimmen zum Spiel gegen Russland',
17 'upload_date': '20150714',
74aa18f6
JMF
18 },
19 }
20
21 def _real_extract(self, url):
5ad28e7f 22 display_id, video_id = self._match_valid_url(url).groups()
74aa18f6 23
74aa18f6
JMF
24 player_info = self._download_xml(
25 'http://tv.dfb.de/server/hd_video.php?play=%s' % video_id,
ddcdc684 26 display_id)
74aa18f6 27 video_info = player_info.find('video')
65a3bfb3 28 stream_access_url = self._proto_relative_url(video_info.find('url').text.strip())
29
30 formats = []
31 # see http://tv.dfb.de/player/js/ajax.js for the method to extract m3u8 formats
32 for sa_url in (stream_access_url, stream_access_url + '&area=&format=iphone'):
33 stream_access_info = self._download_xml(sa_url, display_id)
34 token_el = stream_access_info.find('token')
35 manifest_url = token_el.attrib['url'] + '?' + 'hdnea=' + token_el.attrib['auth']
36 if '.f4m' in manifest_url:
37 formats.extend(self._extract_f4m_formats(
38 manifest_url + '&hdcore=3.2.0',
39 display_id, f4m_id='hds', fatal=False))
40 else:
41 formats.extend(self._extract_m3u8_formats(
42 manifest_url, display_id, 'mp4',
43 'm3u8_native', m3u8_id='hls', fatal=False))
74aa18f6
JMF
44
45 return {
46 'id': video_id,
ddcdc684 47 'display_id': display_id,
74aa18f6 48 'title': video_info.find('title').text,
65a3bfb3 49 'thumbnail': 'http://tv.dfb.de/images/%s_640x360.jpg' % video_id,
ddcdc684 50 'upload_date': unified_strdate(video_info.find('time_date').text),
6c1b0c0e 51 'formats': formats,
74aa18f6 52 }