* add external json playout * basic local playback works * fallback to streaming from plex * update external json file * update changelog
13 lines
310 B
C#
13 lines
310 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Streaming;
|
|
|
|
public interface IExternalJsonPlayoutItemProvider
|
|
{
|
|
Task<Either<BaseError, PlayoutItemWithPath>> CheckForExternalJson(
|
|
Channel channel,
|
|
DateTimeOffset now,
|
|
string ffmpegPath,
|
|
string ffprobePath);
|
|
}
|