Persistent HTTP connections seem to work now. Re-enabling.

This commit is contained in:
Gabe Kangas
2022-01-27 20:16:35 -08:00
parent 0d77856cb9
commit f272542e40
5 changed files with 5 additions and 5 deletions

View File

@@ -225,7 +225,7 @@ func (t *Transcoder) getString() string {
"-hls_segment_filename", localListenerAddress + "/%v/stream-" + t.segmentIdentifier + "%s.ts", // Send HLS segments back to us over HTTP
"-max_muxing_queue_size", "400", // Workaround for Too many packets error: https://trac.ffmpeg.org/ticket/6375?cversion=0
"-method PUT -http_persistent 0", // HLS results sent back to us will be over PUTs
"-method PUT", // HLS results sent back to us will be over PUTs
localListenerAddress + "/%v/stream.m3u8", // Send HLS playlists back to us over HTTP
}