// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // A class to convert various things to native C# objects // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Utilities { using System; using System.Text.RegularExpressions; using HandBrake.ApplicationServices.Services.Encode.Model.Models; using HandBrake.ApplicationServices.Interop.Model.Encoding; /// /// A class to convert various things to native C# objects /// public class Converters { /** * TODO: * - Many of these converters can be ditched at a later point. Should be able to model all this within the enums themsevles. * **/ /// /// Convert HandBrakes time remaining into a TimeSpan /// /// /// The time remaining for the encode. /// /// /// A TimepSpan object /// public static TimeSpan EncodeToTimespan(string time) { TimeSpan converted = new TimeSpan(0, 0, 0, 0); Match m = Regex.Match(time.Trim(), @"^([0-9]{2}:[0-9]{2}:[0-9]{2})"); if (m.Success) { TimeSpan.TryParse(m.Groups[0].Value, out converted); } return converted; } #region Audio /// /// Get the GUI equiv to a CLI mixdown /// /// The Audio Mixdown /// The GUI representation of the mixdown public static string GetMixDown(string mixdown) { switch (mixdown.Trim()) { case "mono": return "Mono"; case "left_only": return "Mono (Left Only)"; case "right_only": return "Mono (Right Only)"; case "stereo": return "Stereo"; case "dpl1": return "Dolby Surround"; case "dpl2": return "Dolby Pro Logic II"; case "5point1": return "5.1 Channels"; case "6point1": return "6.1 Channels"; case "7point1": return "7.1 Channels"; case "5_2_lfe": return "7.1 (5F/2R/LFE)"; default: return "Automatic"; } } /// /// Get the GUI equiv to a CLI mixdown /// /// The Audio Mixdown /// The GUI representation of the mixdown public static Mixdown GetAudioMixDown(string mixdown) { switch (mixdown.Trim()) { case "Mono": return Mixdown.Mono; case "Stereo": return Mixdown.Stereo; case "Dolby Surround": return Mixdown.DolbySurround; case "Dolby Pro Logic II": return Mixdown.DolbyProLogicII; case "5.1 Channels": return Mixdown.FivePoint1Channels; case "6.1 Channels": return Mixdown.SixPoint1Channels; case "7.1 Channels": return Mixdown.SevenPoint1Channels; case "7.1 (5F/2R/LFE)": return Mixdown.Five_2_LFE; case "None": case "Passthru": return Mixdown.None; default: return Mixdown.Auto; } } /// /// Return the CLI Mixdown name /// /// GUI mixdown name /// CLI mixdown name public static string GetCliMixDown(Mixdown selectedAudio) { switch (selectedAudio) { case Mixdown.Auto: case Mixdown.None: return "none"; case Mixdown.Mono: return "mono"; case Mixdown.LeftOnly: return "left_only"; case Mixdown.RightOnly: return "right_only"; case Mixdown.Stereo: return "stereo"; case Mixdown.DolbySurround: return "dpl1"; case Mixdown.DolbyProLogicII: return "dpl2"; case Mixdown.FivePoint1Channels: return "5point1"; case Mixdown.SixPoint1Channels: return "6point1"; case Mixdown.SevenPoint1Channels: return "7point1"; case Mixdown.Five_2_LFE: return "5_2_lfe"; default: return "auto"; } } /// /// Get the GUI equiv to a GUI audio encoder string /// /// The Audio Encoder /// The GUI representation of that audio encoder public static AudioEncoder GetAudioEncoder(string audioEnc) { switch (audioEnc) { case "AAC (faac)": case "AAC (ffmpeg)": case "AAC (avcodec)": return AudioEncoder.ffaac; case "AAC (FDK)": case "AAC (CoreAudio)": return AudioEncoder.fdkaac; case "HE-AAC (FDK)": case "HE-AAC (CoreAudio)": case "HE-AAC": return AudioEncoder.fdkheaac; case "MP3 (lame)": case "MP3": return AudioEncoder.Lame; case "Vorbis (vorbis)": case "Vorbis": return AudioEncoder.Vorbis; case "AC3 (ffmpeg)": case "AC3": return AudioEncoder.Ac3; case "AC3 Passthru": return AudioEncoder.Ac3Passthrough; case "DTS Passthru": return AudioEncoder.DtsPassthrough; case "DTS-HD Passthru": return AudioEncoder.DtsHDPassthrough; case "AAC Passthru": return AudioEncoder.AacPassthru; case "MP3 Passthru": return AudioEncoder.Mp3Passthru; case "FLAC (ffmpeg)": case "FLAC 16-bit": return AudioEncoder.ffflac; case "FLAC (24-bit)": case "FLAC 24-bit": return AudioEncoder.ffflac24; case "TrueHD Passthru": return AudioEncoder.TrueHDPassthrough; case "E-AC3 Passthru": return AudioEncoder.EAc3Passthrough; case "FLAC Passthru": return AudioEncoder.FlacPassthru; case "Auto Passthru": return AudioEncoder.Passthrough; default: return AudioEncoder.ffaac; } } /// /// Get the CLI Audio Encoder name /// /// /// String The GUI Encode name /// /// /// String CLI encoder name /// public static string GetCliAudioEncoder(AudioEncoder selectedEncoder) { return EnumHelper.GetShortName(selectedEncoder); } #endregion #region Video /// /// Get the Video Encoder for a given string /// /// /// The encoder name /// /// /// VideoEncoder enum object /// public static string GetVideoEncoder(VideoEncoder encoder) { switch (encoder) { case VideoEncoder.FFMpeg: return "mpeg4"; case VideoEncoder.FFMpeg2: return "mpeg2"; case VideoEncoder.X264: return "x264"; case VideoEncoder.QuickSync: return "qsv_h264"; case VideoEncoder.Theora: return "theora"; case VideoEncoder.X265: return "x265"; case VideoEncoder.VP8: return "VP8"; default: return "x264"; } } #endregion #region File Format /// /// Get the OutputFormat Enum for a given string /// /// /// OutputFormat as a string /// /// /// An OutputFormat Enum /// public static OutputFormat GetFileFormat(string format) { switch (format.ToLower()) { default: return OutputFormat.Mp4; case "m4v": return OutputFormat.Mp4; case "mkv": return OutputFormat.Mkv; } } /// /// Get the OutputFormat Enum for a given string /// /// /// OutputFormat as a string /// /// /// An OutputFormat Enum /// public static string GetFileFormat(OutputFormat format) { switch (format) { default: return "mp4"; case OutputFormat.Mp4: return "m4v"; case OutputFormat.Mkv: return "mkv"; } } #endregion } }