Merge pull request #639 from Bond-009/ffmpeg4.1
Fix segment_time_delta for ffmpeg 4.1
This commit is contained in:
commit
c64cc733d2
|
@ -936,10 +936,10 @@ namespace MediaBrowser.Api.Playback.Hls
|
|||
|
||||
var timeDeltaParam = string.Empty;
|
||||
|
||||
if (isEncoding && startNumber > 0)
|
||||
if (isEncoding && state.TargetFramerate > 0)
|
||||
{
|
||||
var startTime = state.SegmentLength * startNumber;
|
||||
timeDeltaParam = string.Format("-segment_time_delta -{0}", startTime);
|
||||
float startTime = 1 / (state.TargetFramerate.Value * 2);
|
||||
timeDeltaParam = string.Format("-segment_time_delta {0}", Math.Round(startTime, 3));
|
||||
}
|
||||
|
||||
var segmentFormat = GetSegmentFileExtension(state.Request).TrimStart('.');
|
||||
|
|
Loading…
Reference in New Issue
Block a user