mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[ffmpeg] adding exception catching for call to os.utime in run_ffmpeg_multiple_files
This commit is contained in:
parent
a35099bd33
commit
cc55d08832
@ -146,7 +146,11 @@ def run_ffmpeg_multiple_files(self, input_paths, out_path, opts):
|
||||
stderr = stderr.decode('utf-8', 'replace')
|
||||
msg = stderr.strip().split('\n')[-1]
|
||||
raise FFmpegPostProcessorError(msg)
|
||||
try:
|
||||
os.utime(encodeFilename(out_path), (oldest_mtime, oldest_mtime))
|
||||
except Exception:
|
||||
self._downloader.report_warning('Cannot update utime of file')
|
||||
|
||||
if self._deletetempfiles:
|
||||
for ipath in input_paths:
|
||||
os.remove(ipath)
|
||||
|
Loading…
Reference in New Issue
Block a user