mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-18 09:08:03 +00:00
Merge pull request #1904 from JustAMan/hls-move-2
Switch ffmpeg to hls muxer (from segment) to fix premature stop on non-patched ffmpeg
(cherry picked from commit a460814182)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
This commit is contained in:
committed by
Joshua Boniface
parent
1fad64cd59
commit
7a592a0f15
@@ -2168,7 +2168,8 @@ namespace MediaBrowser.Controller.MediaEncoding
|
||||
// Important: If this is ever re-enabled, make sure not to use it with wtv because it breaks seeking
|
||||
if (!string.Equals(state.InputContainer, "wtv", StringComparison.OrdinalIgnoreCase)
|
||||
&& state.TranscodingType != TranscodingJobType.Progressive
|
||||
&& state.EnableBreakOnNonKeyFrames(outputVideoCodec))
|
||||
&& !state.EnableBreakOnNonKeyFrames(outputVideoCodec)
|
||||
&& (state.BaseRequest.StartTimeTicks ?? 0) > 0)
|
||||
{
|
||||
inputModifier += " -noaccurate_seek";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user