jellyfin/MediaBrowser.Controller/MediaEncoding/IEncodingManager.cs

17 lines
514 B
C#
Raw Normal View History

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