mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
7e9a612585
commit
e121e3cee7
4 changed files with 9 additions and 7 deletions
|
@ -216,10 +216,10 @@ class PhantomJSwrapper:
|
|||
[self.exe, '--ssl-protocol=any', self._TMP_FILES['script'].name],
|
||||
text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
if returncode:
|
||||
raise ExtractorError(f'Executing JS failed\n:{stderr}')
|
||||
raise ExtractorError(f'Executing JS failed:\n{stderr}')
|
||||
with open(self._TMP_FILES['html'].name, 'rb') as f:
|
||||
html = f.read().decode('utf-8')
|
||||
|
||||
self._load_cookies()
|
||||
|
||||
return (html, stdout)
|
||||
return html, stdout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue