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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioEncoder.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The audio encoder enumeration
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Attributes;
/// <summary>
/// The audio encoder.
/// </summary>
public enum AudioEncoder
{
[Display(Name = "AAC (avcodec)")]
[ShortName("av_aac")]
ffaac,
[Display(Name = "AAC (FDK)")]
[ShortName("fdk_aac")]
fdkaac,
[Display(Name = "HE-AAC (FDK)")]
[ShortName("fdk_haac")]
fdkheaac,
[Display(Name = "MP3")]
[ShortName("mp3")]
Lame,
[Display(Name = "AC3")]
[ShortName("ac3")]
Ac3,
[Display(Name = "Auto Passthru")]
[ShortName("copy")]
Passthrough,
[Display(Name = "AC3 Passthru")]
[ShortName("copy:ac3")]
Ac3Passthrough,
[Display(Name = "DTS Passthru")]
[ShortName("copy:dts")]
DtsPassthrough,
[Display(Name = "DTS-HD Passthru")]
[ShortName("copy:dtshd")]
DtsHDPassthrough,
[Display(Name = "AAC Passthru")]
[ShortName("copy:aac")]
AacPassthru,
[Display(Name = "MP3 Passthru")]
[ShortName("copy:mp3")]
Mp3Passthru,
[Display(Name = "Vorbis")]
[ShortName("vorbis")]
Vorbis,
[Display(Name = "FLAC 16-bit")]
[ShortName("flac16")]
ffflac,
[Display(Name = "FLAC 24-bit")]
[ShortName("flac24")]
ffflac24,
}
}
|