1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 02:19:29 +00:00

[openload] Update algorithm again (#10408)

This commit is contained in:
Yen Chi Hsuan 2016-08-28 22:49:46 +08:00
parent 04b32c8f96
commit 98908bcf7c
No known key found for this signature in database
GPG key ID: 3FDDD575826C5C30

View file

@ -60,7 +60,7 @@ class OpenloadIE(InfoExtractor):
if j >= 33 and j <= 126:
j = ((j + 14) % 94) + 33
if idx == len(enc_data) - 1:
j += 2
j += 1
video_url_chars += compat_chr(j)
video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)