13 lines
328 B
C#
13 lines
328 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Streaming;
|
|
|
|
public interface IExternalJsonPlayoutItemProvider
|
|
{
|
|
Task<Either<BaseError, PlayoutItemWithPath>> CheckForExternalJson(
|
|
Channel channel,
|
|
DateTimeOffset now,
|
|
string ffprobePath,
|
|
CancellationToken cancellationToken);
|
|
}
|