Put suggested ffmpeg version into constants file

This commit is contained in:
Gabe Kangas
2021-01-08 16:09:00 -08:00
parent 4c2144a3fc
commit 0526404d19
2 changed files with 8 additions and 8 deletions

View File

@@ -3,11 +3,12 @@ package config
import "path/filepath"
const (
WebRoot = "webroot"
PrivateHLSStoragePath = "hls"
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
ExtraInfoFile = "data/content.md"
StatsFile = "data/stats.json"
WebRoot = "webroot"
PrivateHLSStoragePath = "hls"
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
ExtraInfoFile = "data/content.md"
StatsFile = "data/stats.json"
FfmpegSuggestedVersion = "v4.1.5" // Requires the v
)
var (