diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-02-10 22:16:20 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-10 22:16:20 +0700 |
commit | 951070957516f0044c5dc89bc5ff3c74c30bd0db (patch) | |
tree | e2d9ca9fcb805b68ef9f8ea611b3c59a409488ba /youtube_dl | |
parent | 5abcca9060dfd82e86ec590e0fba6ccd111b54a5 (diff) |
[bloomberg] Add another video id regex (closes #12062)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/bloomberg.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py index c5e11e8eb..2fbfad1ba 100644 --- a/youtube_dl/extractor/bloomberg.py +++ b/youtube_dl/extractor/bloomberg.py @@ -34,6 +34,10 @@ class BloombergIE(InfoExtractor): 'format': 'best[format_id^=hds]', }, }, { + # data-bmmrid= + 'url': 'https://www.bloomberg.com/politics/articles/2017-02-08/le-pen-aide-briefed-french-central-banker-on-plan-to-print-money', + 'only_matching': True, + }, { 'url': 'http://www.bloomberg.com/news/articles/2015-11-12/five-strange-things-that-have-been-happening-in-financial-markets', 'only_matching': True, }, { @@ -45,9 +49,10 @@ class BloombergIE(InfoExtractor): name = self._match_id(url) webpage = self._download_webpage(url, name) video_id = self._search_regex( - (r'["\']bmmrId["\']\s*:\s*(["\'])(?P<url>(?:(?!\1).)+)\1', - r'videoId\s*:\s*(["\'])(?P<url>(?:(?!\1).)+)\1'), - webpage, 'id', group='url', default=None) + (r'["\']bmmrId["\']\s*:\s*(["\'])(?P<id>(?:(?!\1).)+)\1', + r'videoId\s*:\s*(["\'])(?P<id>(?:(?!\1).)+)\1', + r'data-bmmrid=(["\'])(?P<id>(?:(?!\1).)+)\1'), + webpage, 'id', group='id', default=None) if not video_id: bplayer_data = self._parse_json(self._search_regex( r'BPlayer\(null,\s*({[^;]+})\);', webpage, 'id'), name) |