]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/bloomberg.py
[ie/youtube] Suppress "Unavailable videos are hidden" warning (#10159)
[yt-dlp.git] / yt_dlp / extractor / bloomberg.py
CommitLineData
4b6462fc
JMF
1import re
2
3from .common import InfoExtractor
4
5
6class BloombergIE(InfoExtractor):
7ad4258a 7 _VALID_URL = r'https?://(?:www\.)?bloomberg\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
4b6462fc 8
342609a1 9 _TESTS = [{
7879e79d 10 'url': 'https://www.bloomberg.com/news/videos/2021-09-14/apple-unveils-the-new-iphone-13-stock-doesn-t-move-much-video',
7e70ac36 11 'info_dict': {
7879e79d 12 'id': 'V8cFcYMxTHaMcEiiYVr39A',
7e70ac36 13 'ext': 'flv',
7879e79d 14 'title': 'Apple Unveils the New IPhone 13, Stock Doesn\'t Move Much',
4b6462fc 15 },
a3fa6024
YCH
16 'params': {
17 'format': 'best[format_id^=hds]',
18 },
116e7e0d
YCH
19 }, {
20 # video ID in BPlayer(...)
21 'url': 'http://www.bloomberg.com/features/2016-hello-world-new-zealand/',
22 'info_dict': {
23 'id': '938c7e72-3f25-4ddb-8b85-a9be731baa74',
24 'ext': 'flv',
25 'title': 'Meet the Real-Life Tech Wizards of Middle Earth',
26 'description': 'Hello World, Episode 1: New Zealand’s freaky AI babies, robot exoskeletons, and a virtual you.',
27 },
28 'params': {
29 'format': 'best[format_id^=hds]',
30 },
95107095
S
31 }, {
32 # data-bmmrid=
33 'url': 'https://www.bloomberg.com/politics/articles/2017-02-08/le-pen-aide-briefed-french-central-banker-on-plan-to-print-money',
34 'only_matching': True,
342609a1
S
35 }, {
36 'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
37 'only_matching': True,
7ad4258a
S
38 }, {
39 'url': 'http://www.bloomberg.com/politics/videos/2015-11-25/karl-rove-on-jeb-bush-s-struggles-stopping-trump',
40 'only_matching': True,
342609a1 41 }]
4b6462fc
JMF
42
43 def _real_extract(self, url):
ec5913b5 44 name = self._match_id(url)
4b6462fc 45 webpage = self._download_webpage(url, name)
4191fdf1 46 video_id = self._search_regex(
95107095
S
47 (r'["\']bmmrId["\']\s*:\s*(["\'])(?P<id>(?:(?!\1).)+)\1',
48 r'videoId\s*:\s*(["\'])(?P<id>(?:(?!\1).)+)\1',
49 r'data-bmmrid=(["\'])(?P<id>(?:(?!\1).)+)\1'),
50 webpage, 'id', group='id', default=None)
116e7e0d
YCH
51 if not video_id:
52 bplayer_data = self._parse_json(self._search_regex(
53 r'BPlayer\(null,\s*({[^;]+})\);', webpage, 'id'), name)
54 video_id = bplayer_data['id']
7e70ac36
JMF
55 title = re.sub(': Video$', '', self._og_search_title(webpage))
56
ff2be6e1 57 embed_info = self._download_json(
add96eb9 58 f'http://www.bloomberg.com/multimedia/api/embed?id={video_id}', video_id)
ff2be6e1
JMF
59 formats = []
60 for stream in embed_info['streams']:
b7faebba
S
61 stream_url = stream.get('url')
62 if not stream_url:
63 continue
9a4f12be 64 if stream['muxing_format'] == 'TS':
7e5edcfd
S
65 formats.extend(self._extract_m3u8_formats(
66 stream_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
ff2be6e1 67 else:
7e5edcfd
S
68 formats.extend(self._extract_f4m_formats(
69 stream_url, video_id, f4m_id='hds', fatal=False))
ff2be6e1 70
7e70ac36 71 return {
ff2be6e1 72 'id': video_id,
7e70ac36 73 'title': title,
ff2be6e1 74 'formats': formats,
7e70ac36
JMF
75 'description': self._og_search_description(webpage),
76 'thumbnail': self._og_search_thumbnail(webpage),
77 }