[mixcloud] fallback to hardcoded decryption key(closes #18016)
authorRemita Amine <remitamine@gmail.com>
Wed, 21 Nov 2018 22:19:46 +0000 (23:19 +0100)
committerRemita Amine <remitamine@gmail.com>
Wed, 21 Nov 2018 22:21:05 +0000 (23:21 +0100)
youtube_dl/extractor/mixcloud.py

index b7bccb504529d7ca1e7f70ced45d86b9259d454b..a2d19d3efb590aabc055c0155c6e4aad110e3d9b 100644 (file)
@@ -161,11 +161,17 @@ class MixcloudIE(InfoExtractor):
             stream_info = info_json['streamInfo']
             formats = []
 
+            def decrypt_url(f_url):
+                for k in (key, 'IFYOUWANTTHEARTISTSTOGETPAIDDONOTDOWNLOADFROMMIXCLOUD'):
+                    decrypted_url = self._decrypt_xor_cipher(k, compat_b64decode(f_url))
+                    if re.search(r'^https?://[0-9a-z.]+/[0-9A-Za-z/.?=&_-]+$', decrypted_url):
+                        return decrypted_url
+
             for url_key in ('url', 'hlsUrl', 'dashUrl'):
                 format_url = stream_info.get(url_key)
                 if not format_url:
                     continue
-                decrypted = self._decrypt_xor_cipher(key, compat_b64decode(format_url))
+                decrypted = decrypt_url(format_url)
                 if not decrypted:
                     continue
                 if url_key == 'hlsUrl':