blob: 49f875de9ec3639bf5b9955940d2540680f64965 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioList.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 list.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.Presets
{
/// <summary>
/// The audio list.
/// </summary>
public class AudioList
{
/// <summary>
/// Gets or sets the audio bitrate.
/// </summary>
public int AudioBitrate { get; set; }
/// <summary>
/// Gets or sets the audio compression level.
/// </summary>
public double AudioCompressionLevel { get; set; }
/// <summary>
/// Gets or sets the audio dither method.
/// </summary>
public string AudioDitherMethod { get; set; }
/// <summary>
/// Gets or sets the audio encoder.
/// </summary>
public string AudioEncoder { get; set; }
/// <summary>
/// Gets or sets the audio mixdown. (ShortName)
/// </summary>
public string AudioMixdown { get; set; }
/// <summary>
/// Gets or sets a value indicating whether audio normalize mix level.
/// </summary>
public bool AudioNormalizeMixLevel { get; set; }
/// <summary>
/// Gets or sets the audio samplerate.
/// </summary>
public string AudioSamplerate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether audio track quality enable.
/// </summary>
public bool AudioTrackQualityEnable { get; set; }
/// <summary>
/// Gets or sets the audio track quality.
/// </summary>
public double AudioTrackQuality { get; set; }
/// <summary>
/// Gets or sets the audio track gain slider.
/// </summary>
public double AudioTrackGainSlider { get; set; }
/// <summary>
/// Gets or sets the audio track drc slider.
/// </summary>
public double AudioTrackDRCSlider { get; set; }
}
}
|