mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 19:52:40 +01:00
[Openload] Fixed Extraction
They did changed it again.
This commit is contained in:
parent
66bf351f80
commit
398887b4c0
@ -96,14 +96,16 @@ def _real_extract(self, url):
|
|||||||
h = 0
|
h = 0
|
||||||
|
|
||||||
while h < len(v):
|
while h < len(v):
|
||||||
B = v[h:h + 2]
|
B = v[h:h + 3]
|
||||||
i = int(B, 16)
|
i = int(B, 16)
|
||||||
index = (h / 2) % 10
|
if (h / 3) % 3 == 0:
|
||||||
|
i = int(B, 8)
|
||||||
|
index = (h / 3) % 10
|
||||||
A = hashMap[index]
|
A = hashMap[index]
|
||||||
i = i ^ 96
|
i = i ^ 47
|
||||||
i = i ^ A
|
i = i ^ A
|
||||||
video_url_chars.append(compat_chr(i))
|
video_url_chars.append(compat_chr(i))
|
||||||
h += 2
|
h += 3
|
||||||
|
|
||||||
video_url = 'https://openload.co/stream/%s?mime=true'
|
video_url = 'https://openload.co/stream/%s?mime=true'
|
||||||
video_url = video_url % (''.join(video_url_chars))
|
video_url = video_url % (''.join(video_url_chars))
|
||||||
|
Loading…
Reference in New Issue
Block a user