* refactor graphics engine; async frame generation * add text graphics element to playback troubleshooting
14 lines
368 B
C#
14 lines
368 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
namespace ErsatzTV.Application.Troubleshooting;
|
|
|
|
public record PrepareTroubleshootingPlayback(
|
|
int MediaItemId,
|
|
int FFmpegProfileId,
|
|
List<int> WatermarkIds,
|
|
List<int> GraphicsElementIds,
|
|
int? SubtitleId,
|
|
bool StartFromBeginning)
|
|
: IRequest<Either<BaseError, PlayoutItemResult>>;
|