From d082580ee04dee2fbac71a8186e6fe7a78e4d275 Mon Sep 17 00:00:00 2001 From: ExceptionalError <43562640+ExceptionalError@users.noreply.github.com> Date: Wed, 9 Oct 2019 06:15:00 +0200 Subject: [PATCH] modified args for screenshot --- 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 47853249d..cb018e33b 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, - "-ss", fmt.Sprintf("%v", options.Time), + "-v " + options.Verbosity, + fmt.Sprintf("-ss %v", options.Time), "-y", - "-i", `"` + probeResult.Path + `"`, - "-vframes", "1", - "-q:v", fmt.Sprintf("%v", options.Quality), - "-vf", fmt.Sprintf("scale=%v:-1", options.Width), - "-f", "image2", + "-i \"" + probeResult.Path + "\"", + "-vframes 1", + fmt.Sprintf("-q:v %v", options.Quality), + fmt.Sprintf("-vf scale=%v:-1", options.Width), + "-f image2", options.OutputPath, } _, _ = e.run(probeResult, args)