2 from __future__ import unicode_literals
6 from .common import InfoExtractor
16 class BRIE(InfoExtractor):
17 IE_DESC = 'Bayerischer Rundfunk Mediathek'
18 _VALID_URL = r'(?P<base_url>https?://(?:www\.)?br(?:-klassik)?\.de)/(?:[a-z0-9\-_]+/)+(?P<id>[a-z0-9\-_]+)\.html'
22 'url': 'http://www.br.de/mediathek/video/sendungen/abendschau/betriebliche-altersvorsorge-104.html',
23 'md5': '83a0477cf0b8451027eb566d88b51106',
25 'id': '48f656ef-287e-486f-be86-459122db22cc',
27 'title': 'Die böse Überraschung',
28 'description': 'md5:ce9ac81b466ce775b8018f6801b48ac9',
30 'uploader': 'Reinhard Weber',
31 'upload_date': '20150422',
35 'url': 'http://www.br.de/nachrichten/oberbayern/inhalt/muenchner-polizeipraesident-schreiber-gestorben-100.html',
36 'md5': 'af3a3a4aa43ff0ce6a89504c67f427ef',
38 'id': 'a4b83e34-123d-4b81-9f4e-c0d3121a4e05',
40 'title': 'Manfred Schreiber ist tot',
41 'description': 'md5:b454d867f2a9fc524ebe88c3f5092d97',
46 'url': 'https://www.br-klassik.de/audio/peeping-tom-premierenkritik-dance-festival-muenchen-100.html',
47 'md5': '8b5b27c0b090f3b35eac4ab3f7a73d3d',
49 'id': '74c603c9-26d3-48bb-b85b-079aeed66e0b',
51 'title': 'Kurzweilig und sehr bewegend',
52 'description': 'md5:0351996e3283d64adeb38ede91fac54e',
57 'url': 'http://www.br.de/radio/bayern1/service/team/videos/team-video-erdelt100.html',
58 'md5': 'dbab0aef2e047060ea7a21fc1ce1078a',
60 'id': '6ba73750-d405-45d3-861d-1ce8c524e059',
62 'title': 'Umweltbewusster Häuslebauer',
63 'description': 'md5:d52dae9792d00226348c1dbb13c9bae2',
68 'url': 'http://www.br.de/fernsehen/br-alpha/sendungen/kant-fuer-anfaenger/kritik-der-reinen-vernunft/kant-kritik-01-metaphysik100.html',
69 'md5': '23bca295f1650d698f94fc570977dae3',
71 'id': 'd982c9ce-8648-4753-b358-98abb8aec43d',
73 'title': 'Folge 1 - Metaphysik',
74 'description': 'md5:bb659990e9e59905c3d41e369db1fbe3',
76 'uploader': 'Eva Maria Steimle',
77 'upload_date': '20140117',
82 def _real_extract(self, url):
83 base_url, display_id = re.search(self._VALID_URL, url).groups()
84 page = self._download_webpage(url, display_id)
85 xml_url = self._search_regex(
86 r"return BRavFramework\.register\(BRavFramework\('avPlayer_(?:[a-f0-9-]{36})'\)\.setup\({dataURL:'(/(?:[a-z0-9\-]+/)+[a-z0-9/~_.-]+)'}\)\);", page, 'XMLURL')
87 xml = self._download_xml(base_url + xml_url, display_id)
91 for xml_media in xml.findall('video') + xml.findall('audio'):
92 media_id = xml_media.get('externalId')
95 'title': xpath_text(xml_media, 'title', 'title', True),
96 'duration': parse_duration(xpath_text(xml_media, 'duration')),
97 'formats': self._extract_formats(xpath_element(
98 xml_media, 'assets'), media_id),
99 'thumbnails': self._extract_thumbnails(xpath_element(
100 xml_media, 'teaserImage/variants'), base_url),
101 'description': xpath_text(xml_media, 'desc'),
102 'webpage_url': xpath_text(xml_media, 'permalink'),
103 'uploader': xpath_text(xml_media, 'author'),
105 broadcast_date = xpath_text(xml_media, 'broadcastDate')
107 media['upload_date'] = ''.join(reversed(broadcast_date.split('.')))
111 self._downloader.report_warning(
112 'found multiple medias; please '
113 'report this with the video URL to http://yt-dl.org/bug')
115 raise ExtractorError('No media entries found')
118 def _extract_formats(self, assets, media_id):
120 for asset in assets.findall('asset'):
121 format_url = xpath_text(asset, ['downloadUrl', 'url'])
122 asset_type = asset.get('type')
123 if asset_type == 'HDS':
124 formats.extend(self._extract_f4m_formats(
125 format_url + '?hdcore=3.2.0', media_id, f4m_id='hds', fatal=False))
126 elif asset_type == 'HLS':
127 formats.extend(self._extract_m3u8_formats(
128 format_url, media_id, 'mp4', 'm3u8_native', m3u8_id='hds', fatal=False))
131 'ext': xpath_text(asset, 'mediaType'),
132 'width': int_or_none(xpath_text(asset, 'frameWidth')),
133 'height': int_or_none(xpath_text(asset, 'frameHeight')),
134 'tbr': int_or_none(xpath_text(asset, 'bitrateVideo')),
135 'abr': int_or_none(xpath_text(asset, 'bitrateAudio')),
136 'vcodec': xpath_text(asset, 'codecVideo'),
137 'acodec': xpath_text(asset, 'codecAudio'),
138 'container': xpath_text(asset, 'mediaType'),
139 'filesize': int_or_none(xpath_text(asset, 'size')),
141 format_url = self._proto_relative_url(format_url)
143 http_format_info = format_info.copy()
144 http_format_info.update({
146 'format_id': 'http-%s' % asset_type,
148 formats.append(http_format_info)
149 server_prefix = xpath_text(asset, 'serverPrefix')
151 rtmp_format_info = format_info.copy()
152 rtmp_format_info.update({
153 'url': server_prefix,
154 'play_path': xpath_text(asset, 'fileName'),
155 'format_id': 'rtmp-%s' % asset_type,
157 formats.append(rtmp_format_info)
158 self._sort_formats(formats)
161 def _extract_thumbnails(self, variants, base_url):
163 'url': base_url + xpath_text(variant, 'url'),
164 'width': int_or_none(xpath_text(variant, 'width')),
165 'height': int_or_none(xpath_text(variant, 'height')),
166 } for variant in variants.findall('variant') if xpath_text(variant, 'url')]
167 thumbnails.sort(key=lambda x: x['width'] * x['height'], reverse=True)