Fix offline video while in passthrough mode, it needs an explicit output bandwidth
This commit is contained in:
@@ -32,6 +32,7 @@ func showStreamOfflineState(configuration Config) {
|
|||||||
var streamMappingString = ""
|
var streamMappingString = ""
|
||||||
if configuration.VideoSettings.EnablePassthrough || len(configuration.VideoSettings.StreamQualities) == 0 {
|
if configuration.VideoSettings.EnablePassthrough || len(configuration.VideoSettings.StreamQualities) == 0 {
|
||||||
fmt.Println("Enabling passthrough video")
|
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))
|
streamMaps = append(streamMaps, fmt.Sprintf("v:%d", 0))
|
||||||
} else {
|
} else {
|
||||||
for index, quality := range configuration.VideoSettings.StreamQualities {
|
for index, quality := range configuration.VideoSettings.StreamQualities {
|
||||||
@@ -154,6 +155,7 @@ func startFfmpeg(configuration Config) {
|
|||||||
"-pix_fmt yuv420p",
|
"-pix_fmt yuv420p",
|
||||||
"-f hls",
|
"-f hls",
|
||||||
"-hls_list_size " + strconv.Itoa(configuration.Files.MaxNumberInPlaylist),
|
"-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),
|
"-hls_time " + strconv.Itoa(configuration.VideoSettings.ChunkLengthInSeconds),
|
||||||
"-strftime 1",
|
"-strftime 1",
|
||||||
"-use_localtime 1",
|
"-use_localtime 1",
|
||||||
|
|||||||
Reference in New Issue
Block a user