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
620ee871
Commit
620ee871
authored
Dec 30, 2017
by
Yen Chi Hsuan
Browse files
[openload] Fix extraction (closes #15118)
parent
2ca7ed41
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
ChangeLog
ChangeLog
+6
-0
youtube_dl/extractor/openload.py
youtube_dl/extractor/openload.py
+2
-1
No files found.
ChangeLog
View file @
620ee871
version <unreleased>
Extractors
* [openload] Fix extraction (#15118)
version 2017.12.28
Extractors
...
...
youtube_dl/extractor/openload.py
View file @
620ee871
...
...
@@ -332,7 +332,8 @@ class OpenloadIE(InfoExtractor):
phantom
=
PhantomJSwrapper
(
self
,
required_version
=
'2.0'
)
webpage
,
_
=
phantom
.
get
(
page_url
,
html
=
webpage
,
video_id
=
video_id
,
headers
=
headers
)
decoded_id
=
get_element_by_id
(
'streamurl'
,
webpage
)
decoded_id
=
(
get_element_by_id
(
'streamurl'
,
webpage
)
or
get_element_by_id
(
'streamuri'
,
webpage
))
video_url
=
'https://openload.co/stream/%s?mime=true'
%
decoded_id
...
...
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