summaryrefslogtreecommitdiffstats
path: root/win/C#/frmReadDVD.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-11-27 21:27:19 +0000
committersr55 <[email protected]>2007-11-27 21:27:19 +0000
commite9a2f0eadfefe9f21b1d677c8c53e3a0c2495874 (patch)
tree45119079bf38d194422b0e3980ffeeff8ffbabd4 /win/C#/frmReadDVD.cs
parent4d3dac78d9577670a85a9ec0472ce2bb393fdaf4 (diff)
WinGui:
- Removed some duplicate code and fixed a few small bugs. - Changed the layout of the code slightly. - Changed the DVD parser to use verbose CLI which can be displayed on the DVD information log page. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1081 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.cs')
-rw-r--r--win/C#/frmReadDVD.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs
index 516f746bb..49197eaea 100644
--- a/win/C#/frmReadDVD.cs
+++ b/win/C#/frmReadDVD.cs
@@ -90,7 +90,7 @@ namespace Handbrake
try
{
string appPath = Application.StartupPath.ToString()+ "\\";
- string strCmdLine = "cmd /c " + '"' + '"' + appPath + "HandBrakeCLI.exe" + '"' + " -i " + '"' + inputFile + '"' + " -t0 >" + '"' + appPath + "dvdinfo.dat" + '"' + " 2>&1" + '"';
+ string strCmdLine = "cmd /c " + '"' + '"' + appPath + "HandBrakeCLI.exe" + '"' + " -i " + '"' + inputFile + '"' + " -t0 -v >" + '"' + appPath + "dvdinfo.dat" + '"' + " 2>&1" + '"';
Process hbproc = Process.Start("CMD.exe", strCmdLine);
hbproc.WaitForExit();
hbproc.Dispose();