/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
internal/ffmpeg/encode/const.go
30 строк
721 B
Michael Mayer
Media: Refine 360° projection reporting and docs #5711 #5716
07 авг 2026, 16:58
07 авг 2026, 16:58
a0ef7a0
Код
Авторство
О чём код?
package encode // FFmpegBin defines the default ffmpeg binary name. const ( FFmpegBin = "ffmpeg" FFprobeBin = "ffprobe" ) // Bitrate limit min, max, and default settings in MBps. const ( NoBitrateLimit = -1 MinBitrateLimit = 1 DefaultBitrateLimit = 60 MaxBitrateLimit = 960 ) // Default video and audio track mapping. const ( DefaultMapVideo = "0:v:0" DefaultMapAudio = "0:a:0?" DefaultMapMetadata = "0" ) // Field-of-view limits in degrees for the v360 fisheye dewarp filter. The default is the angle the // stored fisheye disc spans, not a lens specification, so it is smaller than the optics suggest. const ( MinFisheyeFov = 90 DefaultFisheyeFov = 190 MaxFisheyeFov = 360 )