* 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
18 lines
546 B
C#
18 lines
546 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Interfaces.Metadata;
|
|
|
|
public interface ILocalStatisticsProvider
|
|
{
|
|
Task<Either<BaseError, bool>> RefreshStatistics(string ffmpegPath, string ffprobePath, MediaItem mediaItem);
|
|
|
|
Task<Either<BaseError, bool>> RefreshStatistics(
|
|
string ffmpegPath,
|
|
string ffprobePath,
|
|
MediaItem mediaItem,
|
|
string mediaItemPath);
|
|
|
|
Task<Either<BaseError, Dictionary<string, string>>> GetSongTags(string ffprobePath, MediaItem mediaItem);
|
|
}
|