From 4eb843d83ea5d087c4cb9fe532b762288e20a070 Mon Sep 17 00:00:00 2001 From: ExceptionalError <43562640+ExceptionalError@users.noreply.github.com> Date: Sat, 12 Oct 2019 16:04:00 +0200 Subject: [PATCH] revert changes #117 --- pkg/ffmpeg/encoder_screenshot.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkg/ffmpeg/encoder_screenshot.go b/pkg/ffmpeg/encoder_screenshot.go index cb018e33b..14ced4d18 100644 --- a/pkg/ffmpeg/encoder_screenshot.go +++ b/pkg/ffmpeg/encoder_screenshot.go @@ -18,14 +18,14 @@ func (e *Encoder) Screenshot(probeResult VideoFile, options ScreenshotOptions) { options.Quality = 1 } args := []string{ - "-v " + options.Verbosity, - fmt.Sprintf("-ss %v", options.Time), + "-v", options.Verbosity, + "-ss", fmt.Sprintf("%v", options.Time), "-y", - "-i \"" + probeResult.Path + "\"", - "-vframes 1", - fmt.Sprintf("-q:v %v", options.Quality), - fmt.Sprintf("-vf scale=%v:-1", options.Width), - "-f image2", + "-i", probeResult.Path, // TODO: Wrap in quotes? + "-vframes", "1", + "-q:v", fmt.Sprintf("%v", options.Quality), + "-vf", fmt.Sprintf("scale=%v:-1", options.Width), + "-f", "image2", options.OutputPath, } _, _ = e.run(probeResult, args)