mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-03-17 21:42:22 +09:00
Sig Error With Vevo Videos (fixes #1186)
This commit is contained in:
parent
39b782b390
commit
a80551dbc7
@ -344,7 +344,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||
elif len(s) == 85:
|
||||
return s[2:8] + s[0] + s[9:21] + s[65] + s[22:65] + s[84] + s[66:82] + s[21]
|
||||
elif len(s) == 84:
|
||||
return s[83:36:-1] + s[2] + s[35:26:-1] + s[3] + s[25:3:-1] + s[26]
|
||||
return s[83:27:-1] + s[3] + s[26:3:-1] + s[27]
|
||||
elif len(s) == 83:
|
||||
return s[:15] + s[80] + s[16:80] + s[15]
|
||||
elif len(s) == 82:
|
||||
|
Loading…
Reference in New Issue
Block a user