commit: 15c3adbb161a5ef17f6f7acf3030620bc11fd058
parent f143a42fe65ce4932dfab7be1f41c52ffe8a203e
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Fri, 22 Nov 2013 19:08:33 +0100
Merge branch 'master' of github.com:rg3/youtube-dl
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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: