1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-05-03 12:13:35 +00:00

[youtube] Improve signature cipher extraction (closes #25188)

This commit is contained in:
Sergey M․
2020-05-08 17:42:30 +07:00
parent 30fa5c6087
commit fa3db38333
+1 -1
View File
@@ -1966,7 +1966,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
url = url_or_none(fmt.get('url'))
if not url:
cipher = fmt.get('cipher')
cipher = fmt.get('cipher') or fmt.get('signatureCipher')
if not cipher:
continue
url_data = compat_parse_qs(cipher)