* 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
10 lines
241 B
C#
10 lines
241 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Scanner.Core.Metadata.Nfo;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Interfaces.Metadata.Nfo;
|
|
|
|
public interface IEpisodeNfoReader
|
|
{
|
|
Task<Either<BaseError, List<EpisodeNfo>>> ReadFromFile(string fileName);
|
|
}
|