DownMixStereoAlgorithms.cs 965 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace MediaBrowser.Model.Entities;
  2. /// <summary>
  3. /// An enum representing an algorithm to downmix surround sound to stereo.
  4. /// </summary>
  5. public enum DownMixStereoAlgorithms
  6. {
  7. /// <summary>
  8. /// No special algorithm.
  9. /// </summary>
  10. None = 0,
  11. /// <summary>
  12. /// Algorithm by Dave_750.
  13. /// Sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
  14. /// </summary>
  15. Dave750 = 1,
  16. /// <summary>
  17. /// Nightmode Dialogue algorithm.
  18. /// Sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
  19. /// </summary>
  20. NightmodeDialogue = 2,
  21. /// <summary>
  22. /// RFC7845 Section 5.1.1.5 defined algorithm.
  23. /// </summary>
  24. Rfc7845 = 3,
  25. /// <summary>
  26. /// AC-4 standard algorithm with its default gain values.
  27. /// Defined in ETSI TS 103 190 Section 6.2.17.
  28. /// </summary>
  29. Ac4 = 4
  30. }