mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 02:25:11 +00:00
[tube8] Fix extraction (Closes #5952)
This commit is contained in:
parent
97b570a94c
commit
ff0f0b9172
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ def _real_extract(self, url):
|
|||
webpage = self._download_webpage(req, display_id)
|
||||
|
||||
flashvars = json.loads(self._html_search_regex(
|
||||
r'flashvars\s*=\s*({.+?})', webpage, 'flashvars'))
|
||||
r'flashvars\s*=\s*({.+?});\r?\n', webpage, 'flashvars'))
|
||||
|
||||
video_url = flashvars['video_url']
|
||||
if flashvars.get('encrypted') is True:
|
||||
|
|
Loading…
Reference in a new issue