Fix offline video while in passthrough mode, it needs an explicit output bandwidth

This commit is contained in:
Gabe Kangas 2020-06-19 11:38:13 -07:00
parent a81d95eafa
commit 56f7dbba9f

View file

@ -32,6 +32,7 @@ func showStreamOfflineState(configuration Config) {
var streamMappingString = ""
if configuration.VideoSettings.EnablePassthrough || len(configuration.VideoSettings.StreamQualities) == 0 {
fmt.Println("Enabling passthrough video")
videoMapsString = "-b:v 1200k -b:a 128k" // Since we're compositing multiple sources we can't infer bitrate, so pick something reasonable.
streamMaps = append(streamMaps, fmt.Sprintf("v:%d", 0))
} else {
for index, quality := range configuration.VideoSettings.StreamQualities {
@ -154,6 +155,7 @@ func startFfmpeg(configuration Config) {
"-pix_fmt yuv420p",
"-f hls",
"-hls_list_size " + strconv.Itoa(configuration.Files.MaxNumberInPlaylist),
"-hls_delete_threshold 10", // Keep 10 unreferenced segments on disk before they're deleted.
"-hls_time " + strconv.Itoa(configuration.VideoSettings.ChunkLengthInSeconds),
"-strftime 1",
"-use_localtime 1",