* load embedded song metadata * index song artist and song album * reset all song metadata
17 lines
398 B
C#
17 lines
398 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata
|
|
{
|
|
public interface ISongFolderScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanFolder(
|
|
LibraryPath libraryPath,
|
|
string ffprobePath,
|
|
string ffmpegPath,
|
|
decimal progressMin,
|
|
decimal progressMax);
|
|
}
|
|
}
|