mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-01 00:12:58 +01:00
[bloomberg] Support BPlayer() players (closes #10187)
This commit is contained in:
parent
cf03e34ad3
commit
116e7e0d04
@ -1,3 +1,8 @@
|
|||||||
|
version <unreleased>
|
||||||
|
|
||||||
|
Fixed/improved extractors
|
||||||
|
- [bloomberg] Support another form of player (#10187)
|
||||||
|
|
||||||
version 2016.07.30
|
version 2016.07.30
|
||||||
|
|
||||||
Fixed/improved extractors
|
Fixed/improved extractors
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
@ -20,6 +21,18 @@ class BloombergIE(InfoExtractor):
|
|||||||
'params': {
|
'params': {
|
||||||
'format': 'best[format_id^=hds]',
|
'format': 'best[format_id^=hds]',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# video ID in BPlayer(...)
|
||||||
|
'url': 'http://www.bloomberg.com/features/2016-hello-world-new-zealand/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '938c7e72-3f25-4ddb-8b85-a9be731baa74',
|
||||||
|
'ext': 'flv',
|
||||||
|
'title': 'Meet the Real-Life Tech Wizards of Middle Earth',
|
||||||
|
'description': 'Hello World, Episode 1: New Zealand’s freaky AI babies, robot exoskeletons, and a virtual you.',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'format': 'best[format_id^=hds]',
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
|
'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
@ -33,7 +46,11 @@ class BloombergIE(InfoExtractor):
|
|||||||
webpage = self._download_webpage(url, name)
|
webpage = self._download_webpage(url, name)
|
||||||
video_id = self._search_regex(
|
video_id = self._search_regex(
|
||||||
r'["\']bmmrId["\']\s*:\s*(["\'])(?P<url>.+?)\1',
|
r'["\']bmmrId["\']\s*:\s*(["\'])(?P<url>.+?)\1',
|
||||||
webpage, 'id', group='url')
|
webpage, 'id', group='url', default=None)
|
||||||
|
if not video_id:
|
||||||
|
bplayer_data = self._parse_json(self._search_regex(
|
||||||
|
r'BPlayer\(null,\s*({[^;]+})\);', webpage, 'id'), name)
|
||||||
|
video_id = bplayer_data['id']
|
||||||
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(
|
||||||
|
Loading…
Reference in New Issue
Block a user