* fix motion graphics loop when seeking * add channel playback troubleshooter * fix errors
15 lines
400 B
C#
15 lines
400 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,
|
|
Option<int> FFmpegProfileId) : IRequest<Either<BaseError, PlayoutItemProcessModel>>;
|