mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[mixcloud] Fix play info decryption (closes #13885)
This commit is contained in:
parent
1663bd6e1c
commit
92a5c41532
@ -57,7 +57,8 @@ class MixcloudIE(InfoExtractor):
|
||||
def _decrypt_play_info(self, play_info, video_id):
|
||||
KEYS = (
|
||||
'pleasedontdownloadourmusictheartistswontgetpaid',
|
||||
'(function() { return new Date().toLocaleDateString(); })()'
|
||||
'window.addEventListener = window.addEventListener || function() {};',
|
||||
'(function() { return new Date().toLocaleDateString(); })()',
|
||||
)
|
||||
play_info = base64.b64decode(play_info.encode('ascii'))
|
||||
for num, key in enumerate(KEYS, start=1):
|
||||
|
Loading…
Reference in New Issue
Block a user