about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-11-22 19:08:33 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-11-22 19:08:33 +0100
commit15c3adbb161a5ef17f6f7acf3030620bc11fd058 (patch)
tree54e647c6f0249f49036ad3e4b46744babadfdf58
parentf143a42fe65ce4932dfab7be1f41c52ffe8a203e (diff)
parent241650c7ff8afa7236598d0f95d20c0898abc02c (diff)
downloadyoutube-dl-15c3adbb161a5ef17f6f7acf3030620bc11fd058.tar.gz
youtube-dl-15c3adbb161a5ef17f6f7acf3030620bc11fd058.tar.xz
youtube-dl-15c3adbb161a5ef17f6f7acf3030620bc11fd058.zip
Merge branch 'master' of github.com:rg3/youtube-dl
-rw-r--r--youtube_dl/extractor/vimeo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
index d465bf20b..7d82c2cfa 100644
--- a/youtube_dl/extractor/vimeo.py
+++ b/youtube_dl/extractor/vimeo.py
@@ -151,7 +151,7 @@ class VimeoIE(InfoExtractor):
                 config = json.loads(config_json)
             except RegexNotFoundError:
                 # For pro videos or player.vimeo.com urls
-                config = self._search_regex([r' = {config:({.+?}),assets:', r'c=({.+?);'],
+                config = self._search_regex([r' = {config:({.+?}),assets:', r'(?:c|b)=({.+?});'],
                     webpage, u'info section', flags=re.DOTALL)
                 config = json.loads(config)
         except Exception as e: