[core] Fix `filepath` being copied to underlying format dict

Closes #6536
pull/7390/head
pukkandan 11 months ago
parent ad54c9130e
commit 84078a8b38
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -3212,6 +3212,8 @@ class YoutubeDL:
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…
Cancel
Save