* move subtitles provider into scanner * move more stuff into scanner * move nfo into scanner * add scan subcommand * fix a bunch of nfo build warnings * more subcommands * fix warnings * cleanup logging * remove unused code * cleanup old ffmpeg stuff * rename complex filter * refactor wrapped segmenter
24 lines
1.2 KiB
C#
24 lines
1.2 KiB
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Interfaces.Metadata;
|
|
|
|
public interface ILocalMetadataProvider
|
|
{
|
|
Task<ShowMetadata> GetMetadataForShow(string showFolder);
|
|
Task<ArtistMetadata> GetMetadataForArtist(string artistFolder);
|
|
Task<bool> RefreshSidecarMetadata(Movie movie, string nfoFileName);
|
|
Task<bool> RefreshSidecarMetadata(Show televisionShow, string nfoFileName);
|
|
Task<bool> RefreshSidecarMetadata(Episode episode, string nfoFileName);
|
|
Task<bool> RefreshSidecarMetadata(Artist artist, string nfoFileName);
|
|
Task<bool> RefreshSidecarMetadata(MusicVideo musicVideo, string nfoFileName);
|
|
Task<bool> RefreshSidecarMetadata(OtherVideo otherVideo, string nfoFileName);
|
|
Task<bool> RefreshTagMetadata(Song song, string ffprobePath);
|
|
Task<bool> RefreshFallbackMetadata(Movie movie);
|
|
Task<bool> RefreshFallbackMetadata(Episode episode);
|
|
Task<bool> RefreshFallbackMetadata(Artist artist, string artistFolder);
|
|
Task<bool> RefreshFallbackMetadata(MusicVideo musicVideo);
|
|
Task<bool> RefreshFallbackMetadata(OtherVideo otherVideo);
|
|
Task<bool> RefreshFallbackMetadata(Song song);
|
|
Task<bool> RefreshFallbackMetadata(Show televisionShow, string showFolder);
|
|
}
|