mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 00:25:06 +00:00
[francetv] Fix wrong variable name
This commit is contained in:
parent
7e8d73c183
commit
4958ae2058
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ def _extract_video(self, video_id):
|
|||
manifest_url = info.find('videos/video/url').text
|
||||
manifest_url = manifest_url.replace('/z/', '/i/')
|
||||
|
||||
if url.startswith('rtmp'):
|
||||
if manifest_url.startswith('rtmp'):
|
||||
formats = [{'url': manifest_url, 'ext': 'flv'}]
|
||||
else:
|
||||
formats = []
|
||||
|
|
Loading…
Reference in a new issue