mirror of https://github.com/yt-dlp/yt-dlp.git
[bloomberg] Change playback endpoint (#3857)
Closes #3787 Authored by: m4tu4g
This commit is contained in:
parent
8a3e7b1c95
commit
7879e79d11
|
@ -7,13 +7,11 @@ class BloombergIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?bloomberg\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
|
_VALID_URL = r'https?://(?:www\.)?bloomberg\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.bloomberg.com/news/videos/b/aaeae121-5949-481e-a1ce-4562db6f5df2',
|
'url': 'https://www.bloomberg.com/news/videos/2021-09-14/apple-unveils-the-new-iphone-13-stock-doesn-t-move-much-video',
|
||||||
# The md5 checksum changes
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'qurhIVlJSB6hzkVi229d8g',
|
'id': 'V8cFcYMxTHaMcEiiYVr39A',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 'Shah\'s Presentation on Foreign-Exchange Strategies',
|
'title': 'Apple Unveils the New IPhone 13, Stock Doesn\'t Move Much',
|
||||||
'description': 'md5:a8ba0302912d03d246979735c17d2761',
|
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
'format': 'best[format_id^=hds]',
|
'format': 'best[format_id^=hds]',
|
||||||
|
@ -57,7 +55,7 @@ class BloombergIE(InfoExtractor):
|
||||||
title = re.sub(': Video$', '', self._og_search_title(webpage))
|
title = re.sub(': Video$', '', self._og_search_title(webpage))
|
||||||
|
|
||||||
embed_info = self._download_json(
|
embed_info = self._download_json(
|
||||||
'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id)
|
'http://www.bloomberg.com/multimedia/api/embed?id=%s' % video_id, video_id)
|
||||||
formats = []
|
formats = []
|
||||||
for stream in embed_info['streams']:
|
for stream in embed_info['streams']:
|
||||||
stream_url = stream.get('url')
|
stream_url = stream.get('url')
|
||||||
|
|
Loading…
Reference in New Issue