Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetLastPtsTime.cs
T
Jason DoveandGitHub 2ef2b0299a switch back from fmp4 to ts segments (#2554)
* restore pts offset calculation

* use ts segments again

* update changelog
2025-10-21 12:17:05 -05:00

8 lines
230 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.FFmpeg;
namespace ErsatzTV.Application.Streaming;
public record GetLastPtsTime(IHlsInitSegmentCache InitSegmentCache, string ChannelNumber)
: IRequest<Either<BaseError, PtsTime>>;