fix hls timestamps (#598)

This commit is contained in:
Jason Dove
2022-01-27 23:51:18 -06:00
committed by GitHub
parent 7de50dd916
commit 1ee01c1d78
17 changed files with 214 additions and 40 deletions
@@ -27,14 +27,16 @@ namespace ErsatzTV.Core.Interfaces.FFmpeg
bool hlsRealtime,
FillerKind fillerKind,
TimeSpan inPoint,
TimeSpan outPoint);
TimeSpan outPoint,
long ptsOffset);
Task<Process> ForError(
string ffmpegPath,
Channel channel,
Option<TimeSpan> duration,
string errorMessage,
bool hlsRealtime);
bool hlsRealtime,
long ptsOffset);
Process ConcatChannel(string ffmpegPath, bool saveReports, Channel channel, string scheme, string host);