blob: 64ef94fd7c018958b8d1c589b1dcddda6ef1bde9 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioTrack.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>
// Represents an audio track to encode.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.Encode
{
/// <summary>
/// Represents an audio track to encode.
/// </summary>
public class AudioTrack
{
/// <summary>
/// Gets or sets the bitrate.
/// </summary>
public int? Bitrate { get; set; }
/// <summary>
/// Gets or sets the compression level.
/// </summary>
public double? CompressionLevel { get; set; }
/// <summary>
/// Gets or sets the drc.
/// </summary>
public double DRC { get; set; }
/// <summary>
/// Gets or sets the encoder.
/// </summary>
public int Encoder { get; set; }
/// <summary>
/// Gets or sets the gain.
/// </summary>
public double Gain { get; set; }
/// <summary>
/// Gets or sets the mixdown.
/// </summary>
public int Mixdown { get; set; }
/// <summary>
/// Gets or sets a value indicating whether normalize mix level.
/// </summary>
public bool NormalizeMixLevel { get; set; }
/// <summary>
/// Gets or sets the quality.
/// </summary>
public double? Quality { get; set; }
/// <summary>
/// Gets or sets the samplerate.
/// </summary>
public int Samplerate { get; set; }
/// <summary>
/// Gets or sets the Name of the audio track.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the track.
/// </summary>
public int Track { get; set; }
/// <summary>
/// Gets or sets the dither method.
/// </summary>
public int DitherMethod { get; set; }
}
}
|