]>
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]',
37 'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
38 'only_matching': True,
40 'url': 'http://www.bloomberg.com/politics/videos/2015-11-25/karl-rove-on-jeb-bush-s-struggles-stopping-trump',
41 'only_matching': True,
44 def _real_extract(self
, url
):
45 name
= self
._match
_id
(url
)
46 webpage
= self
._download
_webpage
(url
, name
)
47 video_id
= self
._search
_regex
(
48 (r
'["\']bmmrId
["\']\s*:\s*(["\'])(?P
<url
>(?
:(?
!\
1).)+)\
1',
49 r'videoId\s
*:\s
*(["\'])(?P<url>(?:(?!\1).)+)\1'),
50 webpage, 'id', group='url', default=None)
52 bplayer_data = self._parse_json(self._search_regex(
53 r'BPlayer\(null,\s*({[^;]+})\);', webpage, 'id'), name)
54 video_id = bplayer_data['id']
55 title = re.sub(': Video$', '', self._og_search_title(webpage))
57 embed_info = self._download_json(
58 'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id)
60 for stream in embed_info['streams']:
61 stream_url = stream.get('url')
64 if stream['muxing_format'] == 'TS':
65 formats.extend(self._extract_m3u8_formats(
66 stream_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
68 formats.extend(self._extract_f4m_formats(
69 stream_url, video_id, f4m_id='hds', fatal=False))
70 self._sort_formats(formats)
76 'description': self._og_search_description(webpage),
77 'thumbnail': self._og_search_thumbnail(webpage),