2020-10-03 23:35:03 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import "path/filepath"
|
|
|
|
|
|
|
|
const (
|
2021-01-09 01:09:00 +01:00
|
|
|
WebRoot = "webroot"
|
|
|
|
PrivateHLSStoragePath = "hls"
|
|
|
|
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
|
|
|
|
ExtraInfoFile = "data/content.md"
|
|
|
|
StatsFile = "data/stats.json"
|
|
|
|
FfmpegSuggestedVersion = "v4.1.5" // Requires the v
|
2020-10-03 23:35:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
PublicHLSStoragePath = filepath.Join(WebRoot, "hls")
|
|
|
|
)
|