diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-03-20 17:46:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-20 17:46:11 +0100 |
| commit | 2ce08eb1842777e5d9f3369dfb61c73992bf4f54 (patch) | |
| tree | dd980b4d3da3b6b4bf1eccf6f37c0099f8a2400a /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | dd491ce8ffe520f992dd5441d3017a0d6c622790 (diff) | |
| parent | e57c33c4420da4336dacb59c0fc784a7000e71a0 (diff) | |
Merge pull request #9388 from Shadowghost/output-bitrate-channels-master
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index f348d8417..f9f63f751 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -14,6 +14,7 @@ public class EncodingOptions public EncodingOptions() { EnableFallbackFont = false; + EnableAudioVbr = false; DownMixAudioBoost = 2; DownMixStereoAlgorithm = DownMixStereoAlgorithms.None; MaxMuxingQueueSize = 2048; @@ -72,6 +73,11 @@ public class EncodingOptions public bool EnableFallbackFont { get; set; } /// <summary> + /// Gets or sets a value indicating whether audio VBR is enabled. + /// </summary> + public bool EnableAudioVbr { get; set; } + + /// <summary> /// Gets or sets the audio boost applied when downmixing audio. /// </summary> public double DownMixAudioBoost { get; set; } |
