mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
expose max_muxing_queue_size to user
This commit is contained in:
parent
ec3104d2d2
commit
d7caf88df6
2 changed files with 9 additions and 1 deletions
|
|
@ -11,6 +11,8 @@ namespace MediaBrowser.Model.Configuration
|
|||
|
||||
public double DownMixAudioBoost { get; set; }
|
||||
|
||||
public int MaxMuxingQueueSize { get; set; }
|
||||
|
||||
public bool EnableThrottling { get; set; }
|
||||
|
||||
public int ThrottleDelaySeconds { get; set; }
|
||||
|
|
@ -50,6 +52,7 @@ namespace MediaBrowser.Model.Configuration
|
|||
public EncodingOptions()
|
||||
{
|
||||
DownMixAudioBoost = 2;
|
||||
MaxMuxingQueueSize = 2048;
|
||||
EnableThrottling = false;
|
||||
ThrottleDelaySeconds = 180;
|
||||
EncodingThreadCount = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue