diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-28 14:17:18 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-28 15:48:33 +0530 |
commit | ece8a2a1b6a39af3e548c6559b239528eb7d5399 (patch) | |
tree | 277ee4a674b13816cf0a0d97f1275bca742a68e6 /youtube_dlc/postprocessor/ffmpeg.py | |
parent | 8d0ea5f95532bfe940d6cc74520b449af3334e46 (diff) | |
download | hypervideo-pre-ece8a2a1b6a39af3e548c6559b239528eb7d5399.tar.lz hypervideo-pre-ece8a2a1b6a39af3e548c6559b239528eb7d5399.tar.xz hypervideo-pre-ece8a2a1b6a39af3e548c6559b239528eb7d5399.zip |
[embedthumbnail] Fix for missing output filename for ffmpeg call (Closes #38)
Diffstat (limited to 'youtube_dlc/postprocessor/ffmpeg.py')
-rw-r--r-- | youtube_dlc/postprocessor/ffmpeg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/postprocessor/ffmpeg.py b/youtube_dlc/postprocessor/ffmpeg.py index 94eeec980..2bc75e784 100644 --- a/youtube_dlc/postprocessor/ffmpeg.py +++ b/youtube_dlc/postprocessor/ffmpeg.py @@ -268,7 +268,7 @@ class FFmpegPostProcessor(PostProcessor): return stderr.decode('utf-8', 'replace') def run_ffmpeg(self, path, out_path, opts): - self.run_ffmpeg_multiple_files([path], out_path, opts) + return self.run_ffmpeg_multiple_files([path], out_path, opts) def _ffmpeg_filename_argument(self, fn): # Always use 'file:' because the filename may contain ':' (ffmpeg |