Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backups
youtube-dl
Commits
f02700a1
Unverified
Commit
f02700a1
authored
Oct 29, 2016
by
Yen Chi Hsuan
Browse files
[openload] Fix extraction (#10408)
Thanks @TwelveCharzz again for studying openload codes
parent
f3517569
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ChangeLog
ChangeLog
+1
-0
youtube_dl/extractor/openload.py
youtube_dl/extractor/openload.py
+1
-1
No files found.
ChangeLog
View file @
f02700a1
version <unreleased>
Extractors
* [openload] Fix extraction (#10408)
* [adultswim] Fix extraction (#10979)
* [hornbunny] Fix extraction (#10981)
...
...
youtube_dl/extractor/openload.py
View file @
f02700a1
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment