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
commit c7873d0235
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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),