mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
live tv updates
This commit is contained in:
parent
0b53ab76eb
commit
e1e5d35434
20 changed files with 264 additions and 114 deletions
|
|
@ -234,6 +234,10 @@ namespace MediaBrowser.Model.Configuration
|
|||
/// <value>The encoding quality.</value>
|
||||
public EncodingQuality EncodingQuality { get; set; }
|
||||
|
||||
public bool EnableMovieChapterImageExtraction { get; set; }
|
||||
public bool EnableEpisodeChapterImageExtraction { get; set; }
|
||||
public bool EnableOtherVideoChapterImageExtraction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
|
|
@ -247,6 +251,10 @@ namespace MediaBrowser.Model.Configuration
|
|||
EnableDashboardResponseCaching = true;
|
||||
EnableVideoImageExtraction = true;
|
||||
|
||||
EnableMovieChapterImageExtraction = true;
|
||||
EnableEpisodeChapterImageExtraction = true;
|
||||
EnableOtherVideoChapterImageExtraction = true;
|
||||
|
||||
#if (DEBUG)
|
||||
EnableDeveloperTools = true;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue