This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[Openload] Fixed Extraction
They did changed it again.
master-ytdl-org
Vijay Singh
8 years ago
committed by
Yen Chi Hsuan
parent
66bf351f80
commit
398887b4c0
1 changed files
with
6 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-4
youtube_dl/extractor/openload.py
+ 6
- 4
youtube_dl/extractor/openload.py
View File
@ -96,14 +96,16 @@ class OpenloadIE(InfoExtractor):
h
=
0
while
h
<
len
(
v
)
:
B
=
v
[
h
:
h
+
2
]
B
=
v
[
h
:
h
+
3
]
i
=
int
(
B
,
16
)
index
=
(
h
/
2
)
%
10
if
(
h
/
3
)
%
3
==
0
:
i
=
int
(
B
,
8
)
index
=
(
h
/
3
)
%
10
A
=
hashMap
[
index
]
i
=
i
^
96
i
=
i
^
47
i
=
i
^
A
video_url_chars
.
append
(
compat_chr
(
i
)
)
h
+
=
2
h
+
=
3
video_url
=
'
https://openload.co/stream/
%s
?mime=true
'
video_url
=
video_url
%
(
'
'
.
join
(
video_url_chars
)
)
Write
Preview
Loading…
Cancel
Save