DownMixStereoAlgorithms.cs 571 B

1234567891011121314151617181920212223
  1. namespace MediaBrowser.Model.Entities;
  2. /// <summary>
  3. /// An enum representing an algorithm to downmix 6ch+ to stereo.
  4. /// Algorithms sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
  5. /// </summary>
  6. public enum DownMixStereoAlgorithms
  7. {
  8. /// <summary>
  9. /// No special algorithm.
  10. /// </summary>
  11. None = 0,
  12. /// <summary>
  13. /// Algorithm by Dave_750.
  14. /// </summary>
  15. Dave750 = 1,
  16. /// <summary>
  17. /// Nightmode Dialogue algorithm.
  18. /// </summary>
  19. NightmodeDialogue = 2
  20. }