* restore pts offset calculation * use ts segments again * update changelog
14 lines
367 B
C#
14 lines
367 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record FFmpegProcessRequest(
|
|
string ChannelNumber,
|
|
StreamingMode Mode,
|
|
DateTimeOffset Now,
|
|
bool StartAtZero,
|
|
bool HlsRealtime,
|
|
DateTimeOffset ChannelStartTime,
|
|
TimeSpan PtsOffset) : IRequest<Either<BaseError, PlayoutItemProcessModel>>;
|