* add basic image library support * add image page * update changelog
12 lines
283 B
C#
12 lines
283 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);
|
|
}
|