mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Add config option to disable dummy chapter generation (#9410)
This commit is contained in:
@@ -243,16 +243,10 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool AllowClientLogUpload { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the dummy chapters duration in seconds.
|
||||
/// Gets or sets the dummy chapter duration in seconds, use 0 (zero) or less to disable generation alltogether.
|
||||
/// </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;
|
||||
public int DummyChapterDuration { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the chapter image resolution.
|
||||
|
||||
Reference in New Issue
Block a user