2014-03-29 11:55:12 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-09-16 19:39:39 +02:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class BloombergIE(InfoExtractor):
|
2015-11-28 17:39:36 +01:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?bloomberg\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
|
2013-09-16 19:39:39 +02:00
|
|
|
|
2015-11-19 17:55:06 +01:00
|
|
|
_TESTS = [{
|
2015-04-03 15:01:17 +02:00
|
|
|
'url': 'http://www.bloomberg.com/news/videos/b/aaeae121-5949-481e-a1ce-4562db6f5df2',
|
2014-07-28 15:25:56 +02:00
|
|
|
# The md5 checksum changes
|
2014-03-29 11:55:12 +01:00
|
|
|
'info_dict': {
|
|
|
|
'id': 'qurhIVlJSB6hzkVi229d8g',
|
|
|
|
'ext': 'flv',
|
|
|
|
'title': 'Shah\'s Presentation on Foreign-Exchange Strategies',
|
2015-04-03 15:01:17 +02:00
|
|
|
'description': 'md5:a8ba0302912d03d246979735c17d2761',
|
2013-09-16 19:39:39 +02:00
|
|
|
},
|
2016-05-12 14:05:43 +02:00
|
|
|
'params': {
|
|
|
|
'format': 'best[format_id^=hds]',
|
|
|
|
},
|
2015-11-19 17:55:06 +01:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
|
|
|
|
'only_matching': True,
|
2015-11-28 17:39:36 +01:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.bloomberg.com/politics/videos/2015-11-25/karl-rove-on-jeb-bush-s-struggles-stopping-trump',
|
|
|
|
'only_matching': True,
|
2015-11-19 17:55:06 +01:00
|
|
|
}]
|
2013-09-16 19:39:39 +02:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-02-24 11:08:00 +01:00
|
|
|
name = self._match_id(url)
|
2013-09-16 19:39:39 +02:00
|
|
|
webpage = self._download_webpage(url, name)
|
2015-11-28 17:41:39 +01:00
|
|
|
video_id = self._search_regex(
|
|
|
|
r'["\']bmmrId["\']\s*:\s*(["\'])(?P<url>.+?)\1',
|
|
|
|
webpage, 'id', group='url')
|
2014-03-29 11:55:12 +01:00
|
|
|
title = re.sub(': Video$', '', self._og_search_title(webpage))
|
|
|
|
|
2015-04-03 15:01:17 +02:00
|
|
|
embed_info = self._download_json(
|
|
|
|
'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id)
|
|
|
|
formats = []
|
|
|
|
for stream in embed_info['streams']:
|
2015-11-28 17:45:19 +01:00
|
|
|
stream_url = stream.get('url')
|
|
|
|
if not stream_url:
|
|
|
|
continue
|
2015-11-28 17:40:29 +01:00
|
|
|
if stream['muxing_format'] == 'TS':
|
2015-12-28 19:58:24 +01:00
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
stream_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
|
2015-04-03 15:01:17 +02:00
|
|
|
else:
|
2015-12-28 19:58:24 +01:00
|
|
|
formats.extend(self._extract_f4m_formats(
|
|
|
|
stream_url, video_id, f4m_id='hds', fatal=False))
|
2015-04-03 15:01:17 +02:00
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2014-03-29 11:55:12 +01:00
|
|
|
return {
|
2015-04-03 15:01:17 +02:00
|
|
|
'id': video_id,
|
2014-03-29 11:55:12 +01:00
|
|
|
'title': title,
|
2015-04-03 15:01:17 +02:00
|
|
|
'formats': formats,
|
2014-03-29 11:55:12 +01:00
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
|
|
}
|