Allow limiting parallel image encodings to reduce memory usage (#8783)

This commit is contained in:
Hannes Braun
2023-01-16 18:06:44 +01:00
committed by GitHub
parent be206d4ff2
commit 66eff8b9ca
2 changed files with 35 additions and 2 deletions

View File

@@ -259,5 +259,11 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
/// <value>The chapter image resolution.</value>
public ImageResolution ChapterImageResolution { get; set; } = ImageResolution.MatchSource;
/// <summary>
/// Gets or sets the limit for parallel image encoding.
/// </summary>
/// <value>The limit for parallel image encoding.</value>
public int ParallelImageEncodingLimit { get; set; } = 0;
}
}