blob: 1dd817e233096c6ba41425e06633e61003a5b2d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
/* Converters.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Functions
{
using System;
using System.Text.RegularExpressions;
using HandBrake.ApplicationServices.Model.Encoding;
/// <summary>
/// A class to convert various things to native C# objects
/// </summary>
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.
*
**/
/// <summary>
/// Convert HandBrakes time remaining into a TimeSpan
/// </summary>
/// <param name="time">
/// The time remaining for the encode.
/// </param>
/// <returns>
/// A TimepSpan object
/// </returns>
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;
}
/// <summary>
/// Get the GUI equiv to a CLI mixdown
/// </summary>
/// <param name="mixdown">The Audio Mixdown</param>
/// <returns>The GUI representation of the mixdown</returns>
public static string GetMixDown(string mixdown)
{
switch (mixdown.Trim())
{
case "mono":
return "Mono";
case "stereo":
return "Stereo";
case "dpl1":
return "Dolby Surround";
case "dpl2":
return "Dolby Pro Logic II";
case "6ch":
return "6 Channel Discrete";
default:
return "Automatic";
}
}
/// <summary>
/// Get the GUI equiv to a CLI audio encoder
/// </summary>
/// <param name="audioEnc">The Audio Encoder</param>
/// <returns>The GUI representation of that audio encoder</returns>
public static string GetGUIAudioEncoder(string audioEnc)
{
switch (audioEnc)
{
case "faac":
return "AAC (faac)";
case "lame":
return "MP3 (lame)";
case "vorbis":
return "Vorbis (vorbis)";
case "ac3":
return "AC3 (ffmpeg)";
case "copy:ac3":
return "AC3 Passthru";
case "copy:dts":
return "DTS Passthru";
default:
return "AAC (faac)";
}
}
/// <summary>
/// Get the Video Encoder for a given string
/// </summary>
/// <param name="encoder">
/// The encoder name
/// </param>
/// <returns>
/// VideoEncoder enum object
/// </returns>
public static VideoEncoder GetVideoEncoder(string encoder)
{
switch (encoder)
{
case "ffmpeg":
return VideoEncoder.FFMpeg;
case "x264":
return VideoEncoder.X264;
case "theora":
return VideoEncoder.Theora;
default:
return VideoEncoder.X264;
}
}
/// <summary>
/// Get a GUI name for a given video Encoder.
/// </summary>
/// <param name="encoder">
/// A VideoEncoder Enum object
/// </param>
/// <returns>
/// A GUI encoder name, default is x264
/// </returns>
public static string GetGUIVideoEncoder(VideoEncoder encoder)
{
switch (encoder)
{
case VideoEncoder.FFMpeg:
return "MPEG-4 (FFmpeg)";
case VideoEncoder.X264:
return "H.264 (x264)";
case VideoEncoder.Theora:
return "VP3 (Theora)";
default:
return "H.264 (x264)";
}
}
/// <summary>
/// Get the OutputFormat Enum for a given string
/// </summary>
/// <param name="format">
/// OutputFormat as a string
/// </param>
/// <returns>
/// An OutputFormat Enum
/// </returns>
public static OutputFormat GetFileFormat(string format)
{
switch (format.ToLower())
{
default:
return OutputFormat.Mp4;
case "m4v":
return OutputFormat.M4V;
case "mkv":
return OutputFormat.Mkv;
}
}
/// <summary>
/// Get the OutputFormat Enum for a given string
/// </summary>
/// <param name="format">
/// OutputFormat as a string
/// </param>
/// <returns>
/// An OutputFormat Enum
/// </returns>
public static string GetFileFormat(OutputFormat format)
{
switch (format)
{
default:
return "mp4";
case OutputFormat.M4V:
return "m4v";
case OutputFormat.Mkv:
return "mkv";
}
}
}
}
|