Browse Source

[openload] Update algorithm again (#10408)

totalwebcasting
Yen Chi Hsuan 8 years ago
parent
commit
98908bcf7c
No known key found for this signature in database GPG Key ID: 3FDDD575826C5C30
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/openload.py

+ 1
- 1
youtube_dl/extractor/openload.py 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)


Loading…
Cancel
Save