18 lines
591 B
C#
18 lines
591 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using MediaBrowser.Controller.Entities;
|
|||
|
using MediaBrowser.Model.Entities;
|
|||
|
using MediaBrowser.Controller.Providers;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
{
|
|||
|
public interface IEncodingManager
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Refreshes the chapter images.
|
|||
|
/// </summary>
|
|||
|
Task<bool> RefreshChapterImages(Video video, IDirectoryService directoryService, List<ChapterInfo> chapters, bool extractImages, bool saveChapters, CancellationToken cancellationToken);
|
|||
|
}
|
|||
|
}
|