* fix motion graphics loop when seeking * add channel playback troubleshooter * fix errors
14 lines
363 B
C#
14 lines
363 B
C#
using CliWrap;
|
|
using ErsatzTV.Core.Interfaces.Streaming;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record PlayoutItemProcessModel(
|
|
Command Process,
|
|
Option<GraphicsEngineContext> GraphicsEngineContext,
|
|
Option<TimeSpan> MaybeDuration,
|
|
DateTimeOffset Until,
|
|
bool IsComplete,
|
|
Option<long> SegmentKey,
|
|
Option<int> MediaItemId);
|