2014-06-29 17:35:05 +00:00
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class ChapterOptions
|
|
|
|
|
{
|
|
|
|
|
public bool EnableMovieChapterImageExtraction { get; set; }
|
|
|
|
|
public bool EnableEpisodeChapterImageExtraction { get; set; }
|
|
|
|
|
public bool EnableOtherVideoChapterImageExtraction { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool DownloadMovieChapters { get; set; }
|
|
|
|
|
public bool DownloadEpisodeChapters { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] FetcherOrder { get; set; }
|
|
|
|
|
public string[] DisabledFetchers { get; set; }
|
|
|
|
|
|
2014-09-09 01:15:31 +00:00
|
|
|
|
public bool ExtractDuringLibraryScan { get; set; }
|
2015-11-08 05:04:38 +00:00
|
|
|
|
|
2014-06-29 17:35:05 +00:00
|
|
|
|
public ChapterOptions()
|
|
|
|
|
{
|
|
|
|
|
DownloadMovieChapters = true;
|
|
|
|
|
|
|
|
|
|
DisabledFetchers = new string[] { };
|
|
|
|
|
FetcherOrder = new string[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|