revert changes #117

This commit is contained in:
ExceptionalError 2019-10-12 16:04:00 +02:00 committed by GitHub
parent 10af75a670
commit 4eb843d83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -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)