在winfoms中多次运行“FFMPEG”

时间:2015-11-13 08:32:53

标签: c# winforms ffmpeg dispose

在C#Windows应用程序中,我尝试调用“ffmpeg”来复用视频和音频。它可能被称为几次。在第一次通话中,一切都很好,但在下一次通话中我遇到了一些问题。一个问题是早期的“ffmpeg”过程没有关闭。所以,如果它存在,我试图杀死它。但是现在我在下面的代码中遇到了一个被处置对象的错误:

   public static void FFMPEG3(string exe_path, string avi_path, string mp3_path, string output_file)
    {
        const int timeout = 2000;
        Kill(exe_path);
        using (Process process = new Process())
        {
            process.StartInfo.FileName = exe_path;
            process.StartInfo.Arguments = string.Format(@"-i ""{0}"" -i ""{1}"" -acodec copy -vcodec copy ""{2}""",
                                           avi_path, mp3_path, output_file);
            process.StartInfo.UseShellExecute = false;
            process.StartInfo.CreateNoWindow = true;
            process.StartInfo.RedirectStandardOutput = true;
            process.StartInfo.RedirectStandardError = true;

            StringBuilder output = new StringBuilder();
            StringBuilder error = new StringBuilder();

            using (AutoResetEvent outputWaitHandle = new AutoResetEvent(false))
            using (AutoResetEvent errorWaitHandle = new AutoResetEvent(false))
            {
                process.OutputDataReceived += (sender, e) =>
                {
                    if (e.Data == null)
                    {
                        outputWaitHandle.Set();
                    }
                    else
                    {
                        output.AppendLine(e.Data);
                    }
                };
                process.ErrorDataReceived += (sender, e) =>
                {
                    if (e.Data == null)
                    {
                        errorWaitHandle.Set();
                    }
                    else
                    {
                        error.AppendLine(e.Data);
                    }
                };

                process.Start();

                process.BeginOutputReadLine();
                process.BeginErrorReadLine();

                if (process.WaitForExit(timeout) &&
                    outputWaitHandle.WaitOne(timeout) &&
                    errorWaitHandle.WaitOne(timeout))
                {
                    // Process completed. Check process.ExitCode here.
                    process.Close();
                }
                else
                {
                    // Timed out.
                    process.Close();
                }
            }
        }
    }

我在ObjectDisposedException

上的ErrorDataRecieved事件获得errorWaitHandle.Set();

首先,我想解决这个错误,但是如果您知道更好的解决方案多次运行“ffmpeg”,请建议我。

1 个答案:

答案 0 :(得分:1)

问题在于,第二次," ffmpeg"必须覆盖以前生成的视频文件。然后,它会询问一个问题并等待用户允许覆盖。由于我使用了CreateNoWindow,因此用户无法回复此邮件。为解决此问题,我使用选项-y自动覆盖以前的任何文件。

 process.StartInfo.Arguments 
  = string.Format(@"-i ""{0}"" -i ""{1}"" -y -acodec copy -vcodec copy ""{2}""",
                                               avi_path, mp3_path, output_file);