jellyfin-server/MediaBrowser.Controller/MediaEncoding/IEncodingManager.cs

18 lines
591 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;
using MediaBrowser.Controller.Providers;
2014-02-20 16:37:41 +00:00
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);
2014-02-20 16:37:41 +00:00
}
}