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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.IO;
namespace Handbrake.Parsing
{
public class Title
{
private List<Chapter> m_chapters;
public List<Chapter> Chapters
{
get
{
return this.m_chapters;
}
}
private List<AudioTrack> m_audioTracks;
public List<AudioTrack> AudioTracks
{
get
{
return this.m_audioTracks;
}
}
private List<Subtitle> m_subtitles;
public List<Subtitle> Subtitles
{
get
{
return this.m_subtitles;
}
}
private int m_vts;
public int Vts
{
get
{
return this.m_vts;
}
}
private int m_ttn;
public int Ttn
{
get
{
return this.m_ttn;
}
}
private int[] m_cellRange;
public int[] CellRange
{
get
{
return this.m_cellRange;
}
}
private int m_blockCount;
public int BlockCount
{
get
{
return this.m_blockCount;
}
}
private int m_titleNumber;
public int TitleNumber
{
get
{
return this.m_titleNumber;
}
}
private TimeSpan m_duration;
public TimeSpan Duration
{
get
{
return this.m_duration;
}
}
private Size m_resolution;
public Size Resolution
{
get
{
return this.m_resolution;
}
}
private float m_aspectRatio;
public float AspectRatio
{
get
{
return this.m_aspectRatio;
}
}
private float m_fps;
public float Fps
{
get
{
return this.m_fps;
}
}
private int[] m_autoCrop;
public int[] AutoCropDimensions
{
get
{
return this.m_autoCrop;
}
}
public Title()
{
this.m_audioTracks = new List<AudioTrack>();
this.m_chapters = new List<Chapter>();
this.m_subtitles = new List<Subtitle>();
this.m_cellRange = new int[2];
}
public static Title Parse(StreamReader output)
{
Title thisTitle = new Title();
/*
* This will be converted to use Regex soon, I promise ;)
* brianmario - 7/9/07
*/
string curLine = output.ReadLine();
thisTitle.m_titleNumber = int.Parse(curLine.Substring(curLine.Length - 2, 1));
curLine = output.ReadLine();
string[] splitter = curLine.Split(',');
thisTitle.m_vts = int.Parse(splitter[0].Substring(8));
thisTitle.m_ttn = int.Parse(splitter[1].Substring(5));
splitter = splitter[2].Trim().Split(' ', '(', ')');
thisTitle.m_blockCount = int.Parse(splitter[3]);
splitter = splitter[1].Split('-', '>');
thisTitle.m_cellRange[0] = int.Parse(splitter[0]);
thisTitle.m_cellRange[1] = int.Parse(splitter[2]);
curLine = output.ReadLine();
splitter = curLine.Split(new string[] { " + duration: " }, StringSplitOptions.RemoveEmptyEntries);
thisTitle.m_duration = TimeSpan.Parse(splitter[0]);
curLine = output.ReadLine();
splitter = curLine.Split(new string[] { " + size: ", "aspect: ", ", ", " fps", "x" }, StringSplitOptions.RemoveEmptyEntries);
thisTitle.m_resolution = new Size(int.Parse(splitter[0]), int.Parse(splitter[1]));
thisTitle.m_aspectRatio = float.Parse(splitter[2].ToString());
thisTitle.m_fps = float.Parse(splitter[3].ToString());
curLine = output.ReadLine();
splitter = curLine.Split(new string[] { " + autocrop: ", "/" }, StringSplitOptions.RemoveEmptyEntries);
thisTitle.m_autoCrop = new int[4] { int.Parse(splitter[0]), int.Parse(splitter[1]), int.Parse(splitter[2]), int.Parse(splitter[3]) };
thisTitle.m_chapters.AddRange(Chapter.ParseList(output));
thisTitle.m_audioTracks.AddRange(AudioTrack.ParseList(output));
thisTitle.m_subtitles.AddRange(Subtitle.ParseList(output));
return thisTitle;
}
public static Title[] ParseList(StreamReader output)
{
List<Title> titles = new List<Title>();
while ((char)output.Peek() == '+')
{
titles.Add(Title.Parse(output));
}
return titles.ToArray();
}
}
}
|