blob: 8f4670ba5e8697efec565ad0a8054ab5360422b1 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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.ApplicationServices.Interop.Json.Presets
{
/// <summary>
/// The audio list.
/// </summary>
public class AudioList
{
/// <summary>
/// Gets or sets the audio bitrate.
/// </summary>
public string AudioBitrate { get; set; }
/// <summary>
/// Gets or sets the audio encoder.
/// </summary>
public string AudioEncoder { get; set; }
/// <summary>
/// Gets or sets the audio mixdown.
/// </summary>
public string AudioMixdown { get; set; }
/// <summary>
/// Gets or sets the audio samplerate.
/// </summary>
public string AudioSamplerate { get; set; }
/// <summary>
/// Gets or sets the audio track.
/// </summary>
public int AudioTrack { get; set; }
/// <summary>
/// Gets or sets the audio track drc slider.
/// </summary>
public double AudioTrackDRCSlider { get; set; }
/// <summary>
/// Gets or sets the audio track gain slider.
/// </summary>
public double AudioTrackGainSlider { get; set; }
}
}
|