mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
Merge pull request #5376 from PeteHemery/ffmpeg-postproc-utime-bug
[ffmpeg] adding exception catching for call to os.utime in run_ffmpeg_multiple_files
This commit is contained in:
commit
bca788ab1d
|
@ -146,7 +146,11 @@ class FFmpegPostProcessor(PostProcessor):
|
||||||
stderr = stderr.decode('utf-8', 'replace')
|
stderr = stderr.decode('utf-8', 'replace')
|
||||||
msg = stderr.strip().split('\n')[-1]
|
msg = stderr.strip().split('\n')[-1]
|
||||||
raise FFmpegPostProcessorError(msg)
|
raise FFmpegPostProcessorError(msg)
|
||||||
os.utime(encodeFilename(out_path), (oldest_mtime, oldest_mtime))
|
try:
|
||||||
|
os.utime(encodeFilename(out_path), (oldest_mtime, oldest_mtime))
|
||||||
|
except Exception:
|
||||||
|
self._downloader.report_warning('Cannot update utime of file')
|
||||||
|
|
||||||
if self._deletetempfiles:
|
if self._deletetempfiles:
|
||||||
for ipath in input_paths:
|
for ipath in input_paths:
|
||||||
os.remove(ipath)
|
os.remove(ipath)
|
||||||
|
|
Loading…
Reference in a new issue