* spike new scanner * add existing items to new scanner * add collection refresh actions * add tv show metadata and posters * update metadata and posters when nfo/poster files are updated * add "remove" action, test for all supported file extensions * update statistics when primary video file is updated * reflect that collections are "sourced" from nfo * implement most scanning actions * cleanup * fix startup * cross-platform scanner tests
12 lines
296 B
C#
12 lines
296 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata
|
|
{
|
|
public interface ILocalMetadataProvider
|
|
{
|
|
Task RefreshSidecarMetadata(MediaItem mediaItem, string path);
|
|
Task RefreshFallbackMetadata(MediaItem mediaItem);
|
|
}
|
|
}
|