[yandexmusic] Fix get-mp3 link

This commit is contained in:
Alexander Pitkin 2020-09-29 23:03:44 +03:00
parent d65d89183f
commit 57f3f0bfed
1 changed files with 1 additions and 2 deletions

View File

@ -109,8 +109,7 @@ class YandexMusicTrackIE(YandexMusicBaseIE):
'Downloading track location JSON',
query={'format': 'json'})
key = hashlib.md5(('XGRlBW9FXlekgbPrRHuSiA' + fd_data['path'][1:] + fd_data['s']).encode('utf-8')).hexdigest()
storage = track['storageDir'].split('.')
f_url = 'http://%s/get-mp3/%s/%s?track-id=%s ' % (fd_data['host'], key, fd_data['ts'] + fd_data['path'], storage[1])
f_url = 'http://%s/get-mp3/%s/%s?track-id=%s ' % (fd_data['host'], key, fd_data['ts'] + fd_data['path'], track_id)
thumbnail = None
cover_uri = track.get('albums', [{}])[0].get('coverUri')