1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-02 11:19:49 +08:00

[youtube] Use sp field value for signature field name (closes #18841, closes #18927, closes #21028)

This commit is contained in:
Sergey M․
2019-05-10 08:36:10 +07:00
Unverified
parent a5b92d3590
commit 027ffdca0d
+2 -1
View File
@@ -1987,7 +1987,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
signature = self._decrypt_signature(
encrypted_sig, video_id, player_url, age_gate)
url += '&signature=' + signature
sp = try_get(url_data, lambda x: x['sp'][0], compat_str) or 'signature'
url += '&%s=%s' % (sp, signature)
if 'ratebypass' not in url:
url += '&ratebypass=yes'