[vimeo] Add another config regex (closes #17690)
This commit is contained in:
parent
245cbb33bc
commit
85fa80d5f9
1 changed files with 1 additions and 0 deletions
|
@ -551,6 +551,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
|||
else:
|
||||
config_re = [r' = {config:({.+?}),assets:', r'(?:[abc])=({.+?});']
|
||||
config_re.append(r'\bvar\s+r\s*=\s*({.+?})\s*;')
|
||||
config_re.append(r'\bconfig\s*=\s*({.+?})\s*;')
|
||||
config = self._search_regex(config_re, webpage, 'info section',
|
||||
flags=re.DOTALL)
|
||||
config = json.loads(config)
|
||||
|
|
Loading…
Reference in a new issue