0

Restore max num of segments in playlist value

This commit is contained in:
Gabe Kangas 2020-06-12 15:02:02 -07:00
parent 5a7c16374c
commit a063956660
3 changed files with 1 additions and 4 deletions

View File

@ -35,7 +35,6 @@ type StreamQuality struct {
// MaxNumberOnDisk must be at least as large as MaxNumberInPlaylist
type Files struct {
MaxNumberInPlaylist int `yaml:"maxNumberInPlaylist"`
MaxNumberOnDisk int `yaml:"maxNumberOnDisk"`
}
type IPFS struct {

View File

@ -14,7 +14,6 @@ videoSettings:
files:
maxNumberInPlaylist: 30
maxNumberOnDisk: 60
ipfs:
enabled: false

View File

@ -69,14 +69,13 @@ func startFfmpeg(configuration Config) {
"-sc_threshold 0", // don't create key frames on scene change - only according to -g
"-profile:v main", // Main for standard definition (SD) to 640×480, High for high definition (HD) to 1920×1080
"-f hls",
"-hls_list_size 30",
"-hls_list_size " + strconv.Itoa(configuration.Files.MaxNumberInPlaylist),
"-hls_time " + strconv.Itoa(configuration.VideoSettings.ChunkLengthInSeconds),
"-strftime 1",
"-use_localtime 1",
"-hls_playlist_type event",
"-hls_segment_filename " + path.Join(outputDir, "stream-%Y%m%d-%s.ts"),
"-hls_flags delete_segments+program_date_time+temp_file",
"-segment_wrap 100",
"-tune zerolatency",
streamMappingString,