1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 08:35:32 +00:00

[EmbedThumbnail] Do not obey -k

This commit is contained in:
pukkandan
2022-05-01 04:58:26 +05:30
parent 94aa064497
commit 43d7f5a5d0
5 changed files with 29 additions and 21 deletions

View File

@ -314,7 +314,7 @@ class ModifyChaptersPP(FFmpegPostProcessor):
self.to_screen(f'Removing chapters from {filename}')
self.concat_files([in_file] * len(concat_opts), out_file, concat_opts)
if in_file != filename:
os.remove(in_file)
self._delete_downloaded_files(in_file, msg=None)
return out_file
@staticmethod