]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/bloomberg.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
9 class BloombergIE(InfoExtractor
):
10 _VALID_URL
= r
'https?://(?:www\.)?bloomberg\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
13 'url': 'http://www.bloomberg.com/news/videos/b/aaeae121-5949-481e-a1ce-4562db6f5df2',
14 # The md5 checksum changes
16 'id': 'qurhIVlJSB6hzkVi229d8g',
18 'title': 'Shah\'s Presentation on Foreign-Exchange Strategies',
19 'description': 'md5:a8ba0302912d03d246979735c17d2761',
22 'format': 'best[format_id^=hds]',
25 # video ID in BPlayer(...)
26 'url': 'http://www.bloomberg.com/features/2016-hello-world-new-zealand/',
28 'id': '938c7e72-3f25-4ddb-8b85-a9be731baa74',
30 'title': 'Meet the Real-Life Tech Wizards of Middle Earth',
31 'description': 'Hello World, Episode 1: New Zealand’s freaky AI babies, robot exoskeletons, and a virtual you.',
34 'format': 'best[format_id^=hds]',
38 'url': 'https://www.bloomberg.com/politics/articles/2017-02-08/le-pen-aide-briefed-french-central-banker-on-plan-to-print-money',
39 'only_matching': True,
41 'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
42 'only_matching': True,
44 'url': 'http://www.bloomberg.com/politics/videos/2015-11-25/karl-rove-on-jeb-bush-s-struggles-stopping-trump',
45 'only_matching': True,
48 def _real_extract(self
, url
):
49 name
= self
._match
_id
(url
)
50 webpage
= self
._download
_webpage
(url
, name
)
51 video_id
= self
._search
_regex
(
52 (r
'["\']bmmrId
["\']\s*:\s*(["\'])(?P
<id>(?
:(?
!\
1).)+)\
1',
53 r'videoId\s
*:\s
*(["\'])(?P<id>(?:(?!\1).)+)\1',
54 r'data-bmmrid=(["\'])(?P
<id>(?
:(?
!\
1).)+)\
1'),
55 webpage, 'id', group='id', default=None)
57 bplayer_data = self._parse_json(self._search_regex(
58 r'BPlayer\
(null
,\s
*({[^
;]+})\
);', webpage, 'id'), name)
59 video_id = bplayer_data['id']
60 title = re.sub(': Video$
', '', self._og_search_title(webpage))
62 embed_info = self._download_json(
63 'http
://www
.bloomberg
.com
/api
/embed?
id=%s' % video_id, video_id)
65 for stream in embed_info['streams
']:
66 stream_url = stream.get('url
')
69 if stream['muxing_format
'] == 'TS
':
70 formats.extend(self._extract_m3u8_formats(
71 stream_url, video_id, 'mp4
', m3u8_id='hls
', fatal=False))
73 formats.extend(self._extract_f4m_formats(
74 stream_url, video_id, f4m_id='hds
', fatal=False))
75 self._sort_formats(formats)
81 'description
': self._og_search_description(webpage),
82 'thumbnail
': self._og_search_thumbnail(webpage),