/* 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.ApplicationServices.Parsing { using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; /// /// An object represending an AudioTrack associated with a Title, in a DVD /// public class Audio { /// /// Initializes a new instance of the class. /// public Audio() { } /// /// Initializes a new instance of the class. /// /// /// The track number. /// /// /// The language. /// /// /// The language code. /// /// /// The description. /// /// /// The format. /// /// /// The sample rate. /// /// /// The bitrate. /// public Audio(int trackNumber, string language, string languageCode, string description, string format, int sampleRate, int bitrate) { this.TrackNumber = trackNumber; this.Language = language; this.LanguageCode = languageCode; this.Description = description; this.Format = format; this.SampleRate = sampleRate; this.Bitrate = bitrate; } /// /// Gets A Dummy Not Found Track /// public static Audio NoneFound { get { return new Audio { Description = "None Found" }; } } /// /// Gets or sets The track number of this Audio Track /// public int TrackNumber { get; set; } /// /// Gets or sets The language (if detected) of this Audio Track /// public string Language { get; set; } /// /// Gets or sets LanguageCode. /// public string LanguageCode { get; set; } /// /// Gets or sets Description. /// public string Description { get; set; } /// /// Gets or sets The primary format of this Audio Track /// public string Format { get; set; } /// /// Gets or sets The frequency (in MHz) of this Audio Track /// public int SampleRate { get; set; } /// /// Gets or sets The bitrate (in kbps) of this Audio Track /// public int Bitrate { get; set; } /// /// Parse the CLI input to an Audio Track object /// /// /// The output. /// /// /// An Audio Track obkect /// public static Audio Parse(StringReader output) { string audioTrack = output.ReadLine(); Match m = Regex.Match(audioTrack, @"^ \+ ([0-9]*), ([A-Za-z0-9,\s]*) \((.*)\) \((.*)\)"); Match track = Regex.Match(audioTrack, @"^ \+ ([0-9]*), ([A-Za-z0-9,\s]*) \((.*)\)"); // ID and Language Match iso639_2 = Regex.Match(audioTrack, @"iso639-2: ([a-zA-Z]*)\)"); Match samplerate = Regex.Match(audioTrack, @"([0-9]*)Hz"); Match bitrate = Regex.Match(audioTrack, @"([0-9]*)bps"); string subformat = m.Groups[4].Value.Trim().Contains("iso639") ? null : m.Groups[4].Value; string samplerateVal = samplerate.Success ? samplerate.Groups[0].Value.Replace("Hz", string.Empty).Trim() : "0"; string bitrateVal = bitrate.Success ? bitrate.Groups[0].Value.Replace("bps", string.Empty).Trim() : "0"; if (track.Success) { var thisTrack = new Audio { TrackNumber = int.Parse(track.Groups[1].Value.Trim()), Language = track.Groups[2].Value, Format = m.Groups[3].Value, Description = subformat, SampleRate = int.Parse(samplerateVal), Bitrate = int.Parse(bitrateVal), LanguageCode = iso639_2.Value.Replace("iso639-2: ", string.Empty).Replace(")", string.Empty) }; return thisTrack; } return null; } /// /// Pase a list of audio tracks /// /// /// The output. /// /// /// An array of audio tracks /// public static Audio[] ParseList(StringReader output) { var tracks = new List