Take control over your live stream video by running it yourself. Streaming + chat out of the box.
 
 
 
 
 
 

13 lines
230 B

package config
import "path/filepath"
const (
WebRoot = "webroot"
PrivateHLSStoragePath = "hls"
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
)
var (
PublicHLSStoragePath = filepath.Join(WebRoot, "hls")
)