Skip to content

Commit

Permalink
[openload] Fix extraction (ytdl-org#10408)
Browse files Browse the repository at this point in the history
Thanks @TwelveCharzz again for studying openload codes
  • Loading branch information
Yen Chi Hsuan committed Oct 29, 2016
1 parent f351756 commit f02700a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version <unreleased>

Extractors
* [openload] Fix extraction (#10408)
* [adultswim] Fix extraction (#10979)
* [hornbunny] Fix extraction (#10981)

Expand Down
2 changes: 1 addition & 1 deletion youtube_dl/extractor/openload.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _real_extract(self, url):
if j >= 33 and j <= 126:
j = ((j + 14) % 94) + 33
if idx == len(enc_data) - 1:
j += 2
j += 3
video_url_chars += compat_chr(j)

video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)
Expand Down

0 comments on commit f02700a

Please sign in to comment.