EncodingOptions.cs 546 B

12345678910111213141516171819
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class EncodingOptions
  5. {
  6. public EncodingQuality EncodingQuality { get; set; }
  7. public string TranscodingTempPath { get; set; }
  8. public double DownMixAudioBoost { get; set; }
  9. public string H264Encoder { get; set; }
  10. public bool EnableDebugLogging { get; set; }
  11. public EncodingOptions()
  12. {
  13. H264Encoder = "libx264";
  14. DownMixAudioBoost = 2;
  15. EncodingQuality = EncodingQuality.Auto;
  16. }
  17. }
  18. }