photoprism/internal/ffmpeg/defaults.go
Michael Mayer 4154649c76 FFmpeg: Remove deprecated "-vsync vfr" command flag #3659
See issue comments for details. This also introduces a package constant
for the default ffmpeg command name and updates the tests.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-09-06 11:27:24 +02:00

8 lines
109 B
Go

package ffmpeg
const (
DefaultBin = "ffmpeg"
MapVideoDefault = "0:v:0"
MapAudioDefault = "0:a:0?"
)