* spike new graphics engine * fix remote watermarks; add graphics engine to vaapi * add graphics engine to qsv
12 lines
305 B
C#
12 lines
305 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);
|