about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-28 22:41:39 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-28 22:41:39 +0600
commit4191fdf147729728ca9c487f25ca66bf3d037cd5 (patch)
treebcd2c973641eaf03644616195a7b7ca9627d6322
parent9a4f12be98a0d59de9b5da65d2cc24b04fe26929 (diff)
downloadyoutube-dl-4191fdf147729728ca9c487f25ca66bf3d037cd5.tar.gz
youtube-dl-4191fdf147729728ca9c487f25ca66bf3d037cd5.tar.xz
youtube-dl-4191fdf147729728ca9c487f25ca66bf3d037cd5.zip
[bloomberg] Improve video id regex
-rw-r--r--youtube_dl/extractor/bloomberg.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py
index b6197d3f1..c28ed0c79 100644
--- a/youtube_dl/extractor/bloomberg.py
+++ b/youtube_dl/extractor/bloomberg.py
@@ -28,7 +28,9 @@ class BloombergIE(InfoExtractor):
     def _real_extract(self, url):
         name = self._match_id(url)
         webpage = self._download_webpage(url, name)
-        video_id = self._search_regex(r'"bmmrId":"(.+?)"', webpage, 'id')
+        video_id = self._search_regex(
+            r'["\']bmmrId["\']\s*:\s*(["\'])(?P<url>.+?)\1',
+            webpage, 'id', group='url')
         title = re.sub(': Video$', '', self._og_search_title(webpage))
 
         embed_info = self._download_json(