我使用FFMPEG Process
收集文件的一些信息:
private void GatherFrames()
{
Process process = new Process();
process.StartInfo.FileName = "ffmpeg";
process.StartInfo.Arguments = "-i \"" + filePath + "\"";
process.StartInfo.RedirectStandardError = true;
process.StartInfo.UseShellExecute = false;
if (!process.Start())
{
Console.WriteLine("Error starting");
return;
}
StreamReader reader = process.StandardError;
string line;
while ((line = reader.ReadLine()) != null)
{
outputRichTextBox.AppendText(line + "\n");
}
process.Close();
}
这似乎工作正常。现在我想得到FrameRate
和thanks to other posts,我发现ffprobe
可以用来做到这一点:
public void GetFrameRate()
{
Process process = new Process();
process.StartInfo.FileName = "ffprobe";
process.StartInfo.Arguments = "-v 0 -of compact=p=0 -select_streams 0 -show_entries stream = r_frame_rate \"" + filePath + "\"";
Console.WriteLine(process.StartInfo.Arguments);
process.StartInfo.RedirectStandardError = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = false;
Console.WriteLine(process.StartInfo);
if (!process.Start())
{
Console.WriteLine("Error starting");
return;
}
StreamReader reader = process.StandardError;
string line;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine(line);
}
process.Close();
}
这似乎根本不起作用。该过程开始,但不会返回我希望返回的内容。
如果我手动运行该命令,请在cmd.exe
中执行以下操作:
> e:
> cd "FILE_PATH"
> ffprobe -v 0 -of compact=p=0 -select_streams 0 -show_entries stream=r_frame_rate "FILE_NAME.mp4"
r_frame_rate=60/1
注意:-show_entries stream = r_frame_rate
不起作用,只有-show_entries stream=r_frame_rate
没有空格。
我不确定如何使用Process
正确地执行此操作。
答案 0 :(得分:1)
我尝试了你的论点并通过StandardOutput
属性得到了输出。
请将您的代码更改为以下内容并再次尝试。
StreamReader reader = process.StandardOutput;