diff options
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 | 
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: | 
