1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-09 12:17:51 +08:00

[Fixed] Mixcloud.com

Just a minor change but keeping all the cases incase they changed it back.
This commit is contained in:
Vijay Singh 2017-08-24 20:00:03 +05:30 committed by GitHub
parent df235dbba8
commit dcaeb02a0b

View File

@ -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')