diff options
| author | Negulici-R. Barnabas <negulici.r.barnabas@outlook.com> | 2022-07-18 17:50:52 +0300 |
|---|---|---|
| committer | Negulici-R. Barnabas <negulici.r.barnabas@outlook.com> | 2022-07-18 17:50:52 +0300 |
| commit | 12ec0e285ddf8a5360859b5c49bb4b7b916569d2 (patch) | |
| tree | f51cc944daed6731f73eb5560c3a09c3c959ea83 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | c2902dd1081acd96cf34682ec8a4812ab6146044 (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.cs | 18 |
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"; } } |
