* fix embedded subtitles from media servers * fix plex external subtitles * fix artwork bug, delete orphaned subtitles * jellyfin subtitles work again * emby subtitles work * rescan all media server libraries
14 lines
324 B
C#
14 lines
324 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Jellyfin;
|
|
|
|
public interface IJellyfinMovieLibraryScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanLibrary(
|
|
string address,
|
|
string apiKey,
|
|
JellyfinLibrary library,
|
|
bool deepScan,
|
|
CancellationToken cancellationToken);
|
|
}
|