* upgrade dependencies * allow blocks with same name in different groups * code cleanup
13 lines
400 B
C#
13 lines
400 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata;
|
|
|
|
public interface ILocalStatisticsProvider
|
|
{
|
|
Task<Either<BaseError, MediaVersion>> GetStatistics(string ffprobePath, string path);
|
|
|
|
Task<Either<BaseError, bool>> RefreshStatistics(string ffmpegPath, string ffprobePath, MediaItem mediaItem);
|
|
|
|
Either<BaseError, List<SongTag>> GetSongTags(MediaItem mediaItem);
|
|
}
|