blob: cf45c02ea33932c5c485013ef603f9a5ec136afc (
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
|
/* Subtitle.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
namespace Handbrake.Parsing
{
/// <summary>
/// An object that represents a subtitle associated with a Title, in a DVD
/// </summary>
public class Subtitle
{
private int m_trackNumber;
/// <summary>
/// The track number of this Subtitle
/// </summary>
public int TrackNumber
{
get
{
return this.m_trackNumber;
}
}
private string m_language;
/// <summary>
/// The language (if detected) of this Subtitle
/// </summary>
public string Language
{
get
{
return this.m_language;
}
}
/// <summary>
/// Override of the ToString method to make this object easier to use in the UI
/// </summary>
/// <returns>A string formatted as: {track #} {language}</returns>
public override string ToString()
{
return string.Format("{0} {1}", this.m_trackNumber, this.m_language);
}
public static Subtitle Parse(StringReader output)
{
string curLine = output.ReadLine();
Match m = Regex.Match(curLine, @"^ \+ ([0-9]*), ([A-Za-z, ]*) \((.*)\)");
if (m.Success && !curLine.Contains("HandBrake has exited."))
{
Subtitle thisSubtitle = new Subtitle();
thisSubtitle.m_trackNumber = int.Parse(m.Groups[1].Value.Trim().ToString());
thisSubtitle.m_language = m.Groups[2].Value;
return thisSubtitle;
}
else
return null;
}
public static Subtitle[] ParseList(StringReader output)
{
List<Subtitle> subtitles = new List<Subtitle>();
while ((char)output.Peek() != '+')
{
Subtitle thisSubtitle = Subtitle.Parse(output);
if (thisSubtitle != null)
subtitles.Add(thisSubtitle);
else
break;
}
return subtitles.ToArray();
}
}
}
|