mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-03 22:32:52 +08:00
Merge branch 'master' into BlenderCloud-issue-13282
This commit is contained in:
commit
6e78d73559
@ -92,7 +92,7 @@ class MixcloudIE(InfoExtractor):
|
||||
js = self._download_webpage(js_url, track_id, fatal=False)
|
||||
if js:
|
||||
KEY_RE_TEMPLATE = r'player\s*:\s*{.*?\b%s\s*:\s*(["\'])(?P<key>(?:(?!\1).)+)\1'
|
||||
for key_name in ('value', 'key_value'):
|
||||
for key_name in ('value', 'key_value', 'key_value_two'):
|
||||
key = self._search_regex(
|
||||
KEY_RE_TEMPLATE % key_name, js, 'key',
|
||||
default=None, group='key')
|
||||
|
Loading…
Reference in New Issue
Block a user