namespace MediaBrowser.Model.Entities;
/// 
/// An enum representing an algorithm to downmix 6ch+ to stereo.
/// Algorithms sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
/// 
public enum DownMixStereoAlgorithms
{
    /// 
    /// No special algorithm.
    /// 
    None = 0,
    /// 
    /// Algorithm by Dave_750.
    /// 
    Dave750 = 1,
    /// 
    /// Nightmode Dialogue algorithm.
    /// 
    NightmodeDialogue = 2
}