package ffmpegServer type FfmpegConfig struct { Timeout int ToHls ToHlsConfig } type CmdBaseConfig struct { decodeCodec string EncodeCodec string Profile string Preset string Crf string Bitrate string VfScale string GopSize string } type ToHlsConfig struct { CmdBaseConfig `mapstructure:"base"` HlsRoot string HlsName string HlsTime string HlsListSize string HlsWarp string }