aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ServerConfiguration.cs
diff options
context:
space:
mode:
authorNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-07-18 17:50:52 +0300
committerNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-07-18 17:50:52 +0300
commit12ec0e285ddf8a5360859b5c49bb4b7b916569d2 (patch)
treef51cc944daed6731f73eb5560c3a09c3c959ea83 /MediaBrowser.Model/Configuration/ServerConfiguration.cs
parentc2902dd1081acd96cf34682ec8a4812ab6146044 (diff)
Chapter Images:
- chapter image extraction intervals, limit count and resolutions can be set by the user from the server general settings;
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/ServerConfiguration.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
index e61b896b9..c37c167eb 100644
--- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
@@ -240,5 +240,23 @@ namespace MediaBrowser.Model.Configuration
/// Gets or sets a value indicating whether clients should be allowed to upload logs.
/// </summary>
public bool AllowClientLogUpload { get; set; } = true;
+
+ /// <summary>
+ /// Gets or sets the dummy chapters duration in seconds.
+ /// </summary>
+ /// <value>The dummy chapters duration.</value>
+ public int DummyChapterDuration { get; set; } = 300;
+
+ /// <summary>
+ /// Gets or sets the dummy chapter count.
+ /// </summary>
+ /// <value>The dummy chapter count.</value>
+ public int DummyChapterCount { get; set; } = 100;
+
+ /// <summary>
+ /// Gets or sets the chapter image resolution.
+ /// </summary>
+ /// <value>The chapter image resolution.</value>
+ public string ChapterImageResolution { get; set; } = "Match Source";
}
}