mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
16 lines
398 B
Go
16 lines
398 B
Go
package encode
|
|
|
|
// FFmpeg encoding preset names from fastest to slowest,
|
|
// see https://trac.ffmpeg.org/wiki/Encode/H.264#Preset.
|
|
const (
|
|
PresetUltraFast = "ultrafast"
|
|
PresetSuperFast = "superfast"
|
|
PresetVeryFast = "veryfast"
|
|
PresetFaster = "faster"
|
|
PresetFast = "fast"
|
|
PresetMedium = "medium"
|
|
PresetSlow = "slow"
|
|
PresetSlower = "slower"
|
|
PresetVerySlow = "veryslow"
|
|
)
|