2014-12-21 12:40:37 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class EncodingOptions
|
|
|
|
|
{
|
2015-07-30 18:52:11 -07:00
|
|
|
|
public int EncodingThreadCount { get; set; }
|
2014-12-21 12:40:37 -07:00
|
|
|
|
public string TranscodingTempPath { get; set; }
|
|
|
|
|
public double DownMixAudioBoost { get; set; }
|
|
|
|
|
public bool EnableDebugLogging { get; set; }
|
2015-03-30 09:16:34 -07:00
|
|
|
|
public bool EnableThrottling { get; set; }
|
2015-05-19 12:15:40 -07:00
|
|
|
|
public int ThrottleThresholdInSeconds { get; set; }
|
2015-09-17 20:08:45 -07:00
|
|
|
|
public string HardwareVideoDecoder { get; set; }
|
2014-12-21 12:40:37 -07:00
|
|
|
|
|
|
|
|
|
public EncodingOptions()
|
|
|
|
|
{
|
|
|
|
|
DownMixAudioBoost = 2;
|
2015-03-30 09:16:34 -07:00
|
|
|
|
EnableThrottling = true;
|
2015-05-19 12:15:40 -07:00
|
|
|
|
ThrottleThresholdInSeconds = 120;
|
2015-07-30 18:52:11 -07:00
|
|
|
|
EncodingThreadCount = -1;
|
2014-12-21 12:40:37 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|