* use ffprobe for plex statistics * emby and jellyfin respect library refresh interval * support 10-bit content with nvidia acceleration
17 lines
409 B
C#
17 lines
409 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Plex;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Plex
|
|
{
|
|
public interface IPlexTelevisionLibraryScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanLibrary(
|
|
PlexConnection connection,
|
|
PlexServerAuthToken token,
|
|
PlexLibrary library,
|
|
string ffprobePath);
|
|
}
|
|
}
|