rework transcoding settings

This commit is contained in:
Luke Pulverenti
2015-07-30 21:52:11 -04:00
parent a2b9ee8ac6
commit 901dab5760
10 changed files with 35 additions and 183 deletions

View File

@@ -3,7 +3,7 @@ namespace MediaBrowser.Model.Configuration
{
public class EncodingOptions
{
public EncodingQuality EncodingQuality { get; set; }
public int EncodingThreadCount { get; set; }
public string TranscodingTempPath { get; set; }
public double DownMixAudioBoost { get; set; }
public string H264Encoder { get; set; }
@@ -15,9 +15,9 @@ namespace MediaBrowser.Model.Configuration
{
H264Encoder = "libx264";
DownMixAudioBoost = 2;
EncodingQuality = EncodingQuality.Auto;
EnableThrottling = true;
ThrottleThresholdInSeconds = 120;
EncodingThreadCount = -1;
}
}
}