1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00

fix sig parameter

This commit is contained in:
pypy 2019-05-10 21:39:30 +09:00
parent 027ffdca0d
commit 6a733397a4

View File

@ -1959,7 +1959,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
player_url = json.loads(player_url_json)
if 'sig' in url_data:
url += '&signature=' + url_data['sig'][0]
url += '&sig=' + url_data['sig'][0]
elif 's' in url_data:
encrypted_sig = url_data['s'][0]