mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[generic] pass base_url to _parse_jwplayer_data
This commit is contained in:
parent
82be732b17
commit
3e943cfe09
1 changed files with 1 additions and 1 deletions
|
@ -2568,7 +2568,7 @@ def _real_extract(self, url):
|
|||
webpage, video_id, transform_source=js_to_json)
|
||||
if jwplayer_data:
|
||||
info = self._parse_jwplayer_data(
|
||||
jwplayer_data, video_id, require_title=False)
|
||||
jwplayer_data, video_id, require_title=False, base_url=url)
|
||||
if not info.get('title'):
|
||||
info['title'] = video_title
|
||||
return info
|
||||
|
|
Loading…
Reference in a new issue