blob: d91638076d67b27e39d30e7e0e140821d7b58fb1 (
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
|
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Handbrake.Parsing
{
public class Subtitle
{
private int m_trackNumber;
public int TrackNumber
{
get
{
return this.m_trackNumber;
}
}
private string m_language;
public string Language
{
get
{
return this.m_language;
}
}
public override string ToString()
{
return string.Format("{0} {1}", this.m_trackNumber, this.m_language);
}
public static Subtitle Parse(StreamReader output)
{
string curLine = output.ReadLine();
if (!curLine.Contains("HandBrake has exited."))
{
Subtitle thisSubtitle = new Subtitle();
string[] splitter = curLine.Split(new string[] { " + ", ", " }, StringSplitOptions.RemoveEmptyEntries);
thisSubtitle.m_trackNumber = int.Parse(splitter[0]);
thisSubtitle.m_language = splitter[1];
return thisSubtitle;
}
else
{
return null;
}
}
public static Subtitle[] ParseList(StreamReader output)
{
List<Subtitle> subtitles = new List<Subtitle>();
while ((char)output.Peek() != '+') // oh glorious hack, serve me well
{
Subtitle thisSubtitle = Subtitle.Parse(output);
if (thisSubtitle != null)
{
subtitles.Add(thisSubtitle);
}
else
{
break;
}
}
return subtitles.ToArray();
}
}
}
|