// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The audio list. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Presets { /// /// The audio list. /// public class AudioList { /// /// Gets or sets the audio bitrate. /// public int AudioBitrate { get; set; } /// /// Gets or sets the audio compression level. /// public double AudioCompressionLevel { get; set; } /// /// Gets or sets the audio dither method. /// public string AudioDitherMethod { get; set; } /// /// Gets or sets the audio encoder. /// public string AudioEncoder { get; set; } /// /// Gets or sets the audio mixdown. (ShortName) /// public string AudioMixdown { get; set; } /// /// Gets or sets a value indicating whether audio normalize mix level. /// public bool AudioNormalizeMixLevel { get; set; } /// /// Gets or sets the audio samplerate. /// public string AudioSamplerate { get; set; } /// /// Gets or sets a value indicating whether audio track quality enable. /// public bool AudioTrackQualityEnable { get; set; } /// /// Gets or sets the audio track quality. /// public double AudioTrackQuality { get; set; } /// /// Gets or sets the audio track gain slider. /// public double AudioTrackGainSlider { get; set; } /// /// Gets or sets the audio track drc slider. /// public double AudioTrackDRCSlider { get; set; } } }