blob: 50751ccf2f60d8526a441a418e83ad35f5ab8a6e (
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
|
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Handbrake.Parsing
{
public class DVD
{
private List<Title> m_titles;
public List<Title> Titles
{
get
{
return this.m_titles;
}
}
public DVD()
{
this.m_titles = new List<Title>();
}
public static DVD Parse(StreamReader output)
{
DVD thisDVD = new DVD();
while (!output.EndOfStream)
{
string curLine = output.ReadLine();
if (curLine.Contains("Scanning title"))
{
thisDVD.m_titles.AddRange(Title.ParseList(output));
}
}
return thisDVD;
}
}
}
|