|
@@ -307,5 +307,29 @@ namespace GxPress.Common.Tools
|
|
|
m_strSize = (FactSize / 1024.00 / 1024.00 / 1024.00).ToString("F2") + " G";
|
|
|
return m_strSize;
|
|
|
}
|
|
|
+ public static string Fromffmpeg(string fileName)
|
|
|
+ {
|
|
|
+ string duration = "";
|
|
|
+ using (System.Diagnostics.Process pro = new System.Diagnostics.Process())
|
|
|
+ {
|
|
|
+ pro.StartInfo.UseShellExecute = false;
|
|
|
+ pro.StartInfo.ErrorDialog = false;
|
|
|
+ pro.StartInfo.RedirectStandardError = true;
|
|
|
+ pro.StartInfo.FileName = AppDomain.CurrentDomain.BaseDirectory +"ffmpeg.exe";
|
|
|
+ pro.StartInfo.Arguments = " -i " + fileName;
|
|
|
+ pro.Start();
|
|
|
+ System.IO.StreamReader errorreader = pro.StandardError;
|
|
|
+ pro.WaitForExit(1000);
|
|
|
+ string result = errorreader.ReadToEnd();
|
|
|
+ if (!string.IsNullOrEmpty(result))
|
|
|
+ {
|
|
|
+ result = result.Substring(result.IndexOf("Duration: ") +("Duration: ").Length, ("00:00:00").Length);
|
|
|
+ duration = result;
|
|
|
+ }
|
|
|
+ return duration;
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|