* add external chapter file scanning Support Matroska chapter xml files next to media file with extension .xml or .chapters * only update chapters in db --------- Co-authored-by: Jeff Slutter <MrMustard@gmail.com> Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
8 lines
218 B
C#
8 lines
218 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Interfaces.Metadata;
|
|
|
|
public interface ILocalChaptersProvider : IDisposable
|
|
{
|
|
Task<bool> UpdateChapters(MediaItem mediaItem, Option<string> localPath);
|
|
} |