mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 10:11:07 +01:00
[openload] Fix extraction (#10408)
Thanks @TwelveCharzz again for studying openload codes
This commit is contained in:
parent
f3517569f6
commit
f02700a1fa
@ -1,6 +1,7 @@
|
|||||||
version <unreleased>
|
version <unreleased>
|
||||||
|
|
||||||
Extractors
|
Extractors
|
||||||
|
* [openload] Fix extraction (#10408)
|
||||||
* [adultswim] Fix extraction (#10979)
|
* [adultswim] Fix extraction (#10979)
|
||||||
* [hornbunny] Fix extraction (#10981)
|
* [hornbunny] Fix extraction (#10981)
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ def _real_extract(self, url):
|
|||||||
if j >= 33 and j <= 126:
|
if j >= 33 and j <= 126:
|
||||||
j = ((j + 14) % 94) + 33
|
j = ((j + 14) % 94) + 33
|
||||||
if idx == len(enc_data) - 1:
|
if idx == len(enc_data) - 1:
|
||||||
j += 2
|
j += 3
|
||||||
video_url_chars += compat_chr(j)
|
video_url_chars += compat_chr(j)
|
||||||
|
|
||||||
video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)
|
video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)
|
||||||
|
Loading…
Reference in New Issue
Block a user