support qsv encoding

This commit is contained in:
Luke Pulverenti
2015-11-26 23:33:20 -05:00
parent b73c3f4411
commit 4415506837
10 changed files with 37 additions and 83 deletions

View File

@@ -8,14 +8,14 @@ namespace MediaBrowser.Model.Configuration
public double DownMixAudioBoost { get; set; }
public bool EnableDebugLogging { get; set; }
public bool EnableThrottling { get; set; }
public int ThrottleThresholdInSeconds { get; set; }
public string HardwareVideoDecoder { get; set; }
public int ThrottleThresholdSeconds { get; set; }
public string HardwareAccelerationType { get; set; }
public EncodingOptions()
{
DownMixAudioBoost = 2;
EnableThrottling = true;
ThrottleThresholdInSeconds = 120;
ThrottleThresholdSeconds = 110;
EncodingThreadCount = -1;
}
}