mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[core] Fix filepath
being copied to underlying format dict
Closes #6536
This commit is contained in:
parent
ad54c9130e
commit
84078a8b38
1 changed files with 2 additions and 0 deletions
|
@ -3212,6 +3212,8 @@ def correct_ext(filename, ext=new_ext):
|
|||
dl_filename = existing_video_file(full_filename, temp_filename)
|
||||
|
||||
info_dict['__real_download'] = False
|
||||
# NOTE: Copy so that original format dicts are not modified
|
||||
info_dict['requested_formats'] = list(map(dict, info_dict['requested_formats']))
|
||||
|
||||
merger = FFmpegMergerPP(self)
|
||||
downloaded = []
|
||||
|
|
Loading…
Reference in a new issue