Browse Source

[yandexmusic:track] Fix extraction (Closes #10193)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
cf03e34ad3
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      youtube_dl/extractor/yandexmusic.py

+ 6
- 0
youtube_dl/extractor/yandexmusic.py View File

@ -75,6 +75,12 @@ class YandexMusicTrackIE(YandexMusicBaseIE):
% storage_dir,
track_id, 'Downloading track location JSON')
# Each string is now wrapped in a list, this is probably only temporarily thus
# supporting both scenarios (see https://github.com/rg3/youtube-dl/issues/10193)
for k, v in data.items():
if v and isinstance(v, list):
data[k] = v[0]
key = hashlib.md5(('XGRlBW9FXlekgbPrRHuSiA' + data['path'][1:] + data['s']).encode('utf-8')).hexdigest()
storage = storage_dir.split('.')


Loading…
Cancel
Save