Merge pull request #117 from ExceptionalError/master

fix docker tag
This commit is contained in:
Leopere
2019-10-07 19:59:16 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
version: '3.4'
services:
stash:
image: stashapp/stash:x86_64
image: stashapp/stash:latest
restart: unless-stopped
ports:
- "9999:9999"

View File

@@ -21,7 +21,7 @@ func (e *Encoder) Screenshot(probeResult VideoFile, options ScreenshotOptions) {
"-v", options.Verbosity,
"-ss", fmt.Sprintf("%v", options.Time),
"-y",
"-i", probeResult.Path, // TODO: Wrap in quotes?
"-i", `"` + probeResult.Path + `"`,
"-vframes", "1",
"-q:v", fmt.Sprintf("%v", options.Quality),
"-vf", fmt.Sprintf("scale=%v:-1", options.Width),