mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 01:12:58 +00:00
added encoding manager interface
This commit is contained in:
parent
160d142088
commit
888b8d619a
30 changed files with 226 additions and 293 deletions
|
|
@ -0,0 +1,17 @@
|
|||
using MediaBrowser.Controller.Entities;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.MediaEncoding
|
||||
{
|
||||
public class ChapterImageRefreshOptions
|
||||
{
|
||||
public Video Video { get; set; }
|
||||
|
||||
public List<ChapterInfo> Chapters { get; set; }
|
||||
|
||||
public bool SaveChapters { get; set; }
|
||||
|
||||
public bool ExtractImages { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue