mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Always set ffmpeg flag +genpts when video stream is being copied
This commit is contained in:
parent
e7e7d96f51
commit
9b39404b9a
@ -1904,7 +1904,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
||||
{
|
||||
flags.Add("+ignidx");
|
||||
}
|
||||
if (state.GenPtsInput)
|
||||
if (state.GenPtsInput || string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
flags.Add("+genpts");
|
||||
}
|
||||
@ -2436,6 +2436,8 @@ namespace MediaBrowser.Controller.MediaEncoding
|
||||
|
||||
if (string.Equals(videoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
args += " -flags -global_header -fflags +genpts";
|
||||
|
||||
if (state.VideoStream != null && IsH264(state.VideoStream) &&
|
||||
string.Equals(state.OutputContainer, "ts", StringComparison.OrdinalIgnoreCase) &&
|
||||
!string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.OrdinalIgnoreCase))
|
||||
@ -2447,11 +2449,6 @@ namespace MediaBrowser.Controller.MediaEncoding
|
||||
{
|
||||
args += " -copyts -avoid_negative_ts disabled -start_at_zero";
|
||||
}
|
||||
|
||||
if (!state.RunTimeTicks.HasValue)
|
||||
{
|
||||
args += " -flags -global_header -fflags +genpts";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user