We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a13bd commit dceede8Copy full SHA for dceede8
src/you_get/downloader/youtube.py
@@ -51,7 +51,7 @@ def decrypt_signature(s):
51
elif len(s) == 84:
52
return s[83:27:-1] + s[0] + s[26:5:-1] + s[2:0:-1] + s[27]
53
elif len(s) == 83:
54
- return s[:15] + s[80] + s[16:80] + s[15]
+ return s[81:64:-1] + s[82] + s[63:52:-1] + s[45] + s[51:45:-1] + s[1] + s[44:1:-1] + s[0]
55
elif len(s) == 82:
56
return s[36] + s[79:67:-1] + s[81] + s[66:40:-1] + s[33] + s[39:36:-1] + s[40] + s[35] + s[0] + s[67] + s[32:0:-1] + s[34]
57
elif len(s) == 81:
0 commit comments