blob: 38d9b344a96444a67778b51e3f71505fd7303443 (
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// --------------------------------------------------------------------------------------------------------------------
// <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>
// An object represending an AudioTrack associated with a Title, in a DVD
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.SourceData
{
/// <summary>
/// An object represending an AudioTrack associated with a Title, in a DVD
/// </summary>
public class AudioTrack
{
/// <summary>
/// Gets or sets the track number of this Audio Track
/// </summary>
public int TrackNumber { get; set; }
/// <summary>
/// Gets or sets the audio codec of this Track.
/// </summary>
public AudioCodec Codec { get; set; }
/// <summary>
/// Gets or sets the language (if detected) of this Audio Track
/// </summary>
public string Language { get; set; }
/// <summary>
/// Gets or sets the language code for this audio track.
/// </summary>
public string LanguageCode { get; set; }
/// <summary>
/// Gets or sets the description for this audio track.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the channel layout of this Audio Track.
/// </summary>
public int ChannelLayout { get; set; }
/// <summary>
/// Gets or sets the frequency (in Hz) of this Audio Track
/// </summary>
public int SampleRate { get; set; }
/// <summary>
/// Gets or sets the bitrate (in bits/sec) of this Audio Track.
/// </summary>
public int Bitrate { get; set; }
/// <summary>
/// Gets the display string for this audio track.
/// </summary>
public string Display
{
get
{
return this.GetDisplayString(true);
}
}
/// <summary>
/// Gets the display string for this audio track (not including track number)
/// </summary>
public string NoTrackDisplay
{
get
{
return this.GetDisplayString(false);
}
}
/// <summary>
/// Override of the ToString method to make this object easier to use in the UI
/// </summary>
/// <returns>A string formatted as: {track #} {language} ({format}) ({sub-format})</returns>
public override string ToString()
{
return this.GetDisplayString(true);
}
private string GetDisplayString(bool includeTrackNumber)
{
if (includeTrackNumber)
{
return this.TrackNumber + " " + this.Description;
}
else
{
return this.Description;
}
}
}
}
|