From: Pete Hemery Date: Tue, 7 Apr 2015 21:33:18 +0000 (+0100) Subject: [ffmpeg] adding exception catching for call to os.utime in run_ffmpeg_multiple_files X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=cc55d08832f5008efb56228900a0dbacb428ed7f;p=youtube-dl [ffmpeg] adding exception catching for call to os.utime in run_ffmpeg_multiple_files --- diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 0b60ac7e7..5ef5e0e54 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/youtube_dl/postprocessor/ffmpeg.py @@ -146,7 +146,11 @@ class FFmpegPostProcessor(PostProcessor): stderr = stderr.decode('utf-8', 'replace') msg = stderr.strip().split('\n')[-1] 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: for ipath in input_paths: os.remove(ipath)