Browse Source

Merge branch 'master' of github.com:rg3/youtube-dl

Philipp Hagemeister 11 years ago
parent
commit
15c3adbb16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/vimeo.py

+ 1 - 1
youtube_dl/extractor/vimeo.py

@@ -151,7 +151,7 @@ class VimeoIE(InfoExtractor):
                 config = json.loads(config_json)
                 config = json.loads(config_json)
             except RegexNotFoundError:
             except RegexNotFoundError:
                 # For pro videos or player.vimeo.com urls
                 # 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)
                     webpage, u'info section', flags=re.DOTALL)
                 config = json.loads(config)
                 config = json.loads(config)
         except Exception as e:
         except Exception as e: