/* AudioTrack.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake.Model { /// /// An Audio Track for the Audio Panel /// public class AudioTrack { /// /// Initializes a new instance of the class. /// public AudioTrack() { // Default Values this.Track = "Automatic"; this.MixDown = "Automatic"; this.SampleRate = "Auto"; this.Bitrate = "Auto"; this.DRC = "1"; } /// /// Gets or sets Audio Track Name /// public string Track { get; set; } /// /// Gets or sets Audio Mixdown /// public string MixDown { get; set; } /// /// Gets or sets Audio Encoder /// public string Encoder { get; set; } /// /// Gets or sets Audio Bitrate /// public string Bitrate { get; set; } /// /// Gets or sets Audio SampleRate /// public string SampleRate { get; set; } /// /// Gets or sets Dynamic Range Compression /// public string DRC { get; set; } } }