2017-08-10 11:01:31 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
2014-02-20 09:37:41 -07:00
|
|
|
|
using System.Threading.Tasks;
|
2017-08-10 11:01:31 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-02-20 09:37:41 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
|
|
|
|
{
|
|
|
|
|
public interface IEncodingManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Refreshes the chapter images.
|
|
|
|
|
/// </summary>
|
2017-08-10 11:01:31 -07:00
|
|
|
|
Task<bool> RefreshChapterImages(Video video, List<ChapterInfo> chapters, bool extractImages, bool saveChapters, CancellationToken cancellationToken);
|
2014-02-20 09:37:41 -07:00
|
|
|
|
}
|
|
|
|
|
}
|