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
|
// --------------------------------------------------------------------------------------------------------------------
// <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 HandBrakeWPF.Services.Encode.Model.Models
{
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Attributes;
/// <summary>
/// The audio encoder.
/// </summary>
public enum AudioEncoder
{
[DisplayName("AAC (avcodec)")]
[ShortName("av_aac")]
ffaac,
[DisplayName("AAC (FDK)")]
[ShortName("fdk_aac")]
fdkaac,
[DisplayName("HE-AAC (FDK)")]
[ShortName("fdk_haac")]
fdkheaac,
[DisplayName("MP3")]
[ShortName("mp3")]
Lame,
[DisplayName("AC3")]
[ShortName("ac3")]
Ac3,
[DisplayName("Auto Passthru")]
[ShortName("copy")]
Passthrough,
[DisplayName("AC3 Passthru")]
[ShortName("copy:ac3")]
Ac3Passthrough,
[DisplayName("E-AC3 Passthru")]
[ShortName("copy:eac3")]
EAc3Passthrough,
[DisplayName("DTS Passthru")]
[ShortName("copy:dts")]
DtsPassthrough,
[DisplayName("DTS-HD Passthru")]
[ShortName("copy:dtshd")]
DtsHDPassthrough,
[DisplayName("TrueHD Passthru")]
[ShortName("copy:truehd")]
TrueHDPassthrough,
[DisplayName("AAC Passthru")]
[ShortName("copy:aac")]
AacPassthru,
[DisplayName("MP3 Passthru")]
[ShortName("copy:mp3")]
Mp3Passthru,
[DisplayName("Vorbis")]
[ShortName("vorbis")]
Vorbis,
[DisplayName("FLAC 16-bit")]
[ShortName("flac16")]
ffflac,
[DisplayName("FLAC 24-bit")]
[ShortName("flac24")]
ffflac24,
[DisplayName("FLAC Passthru")]
[ShortName("copy:flac")]
FlacPassthru,
[DisplayName("Opus (libopus)")]
[ShortName("opus")]
Opus,
}
}
|