2014-12-21 19:40:37 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class EncodingOptions
|
|
|
|
|
{
|
2015-07-31 01:52:11 +00:00
|
|
|
|
public int EncodingThreadCount { get; set; }
|
2014-12-21 19:40:37 +00:00
|
|
|
|
public string TranscodingTempPath { get; set; }
|
|
|
|
|
public double DownMixAudioBoost { get; set; }
|
2015-03-30 16:16:34 +00:00
|
|
|
|
public bool EnableThrottling { get; set; }
|
2016-01-09 04:27:58 +00:00
|
|
|
|
public int ThrottleDelaySeconds { get; set; }
|
2015-11-27 04:34:11 +00:00
|
|
|
|
public string HardwareAccelerationType { get; set; }
|
2016-06-20 06:19:28 +00:00
|
|
|
|
public string EncoderAppPath { get; set; }
|
2016-08-23 16:31:16 +00:00
|
|
|
|
public string VaapiDevice { get; set; }
|
2016-09-04 15:01:31 +00:00
|
|
|
|
public int H264Crf { get; set; }
|
|
|
|
|
public string H264Preset { get; set; }
|
2014-12-21 19:40:37 +00:00
|
|
|
|
|
|
|
|
|
public EncodingOptions()
|
|
|
|
|
{
|
|
|
|
|
DownMixAudioBoost = 2;
|
2015-03-30 16:16:34 +00:00
|
|
|
|
EnableThrottling = true;
|
2016-01-09 04:27:58 +00:00
|
|
|
|
ThrottleDelaySeconds = 180;
|
2015-07-31 01:52:11 +00:00
|
|
|
|
EncodingThreadCount = -1;
|
2016-08-24 20:14:35 +00:00
|
|
|
|
VaapiDevice = "/dev/dri/card0";
|
2016-09-04 15:01:31 +00:00
|
|
|
|
H264Crf = 23;
|
2014-12-21 19:40:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|