youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f02700a1fa83205840fefe9ae86ccfe13a8cf748
parent f3517569f60345a3948ce145fb603fe2a71b2d6f
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sat, 29 Oct 2016 17:59:35 +0800

[openload] Fix extraction (#10408)

Thanks @TwelveCharzz again for studying openload codes

Diffstat:
MChangeLog | 1+
Myoutube_dl/extractor/openload.py | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,6 +1,7 @@ version <unreleased> Extractors +* [openload] Fix extraction (#10408) * [adultswim] Fix extraction (#10979) * [hornbunny] Fix extraction (#10981) diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py @@ -82,7 +82,7 @@ class OpenloadIE(InfoExtractor): 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)