C # получить вывод процесса во время работы

Есть ли в любом случае перенаправить стандартный вывод порожденного процесса и захватить его, как это происходит. Все, что я видел, просто делает ReadToEnd после завершения процесса. Я хотел бы иметь возможность получить вывод, как он печатается.

Редактировать:

    private void ConvertToMPEG()
    {
        // Start the child process.
        Process p = new Process();
        // Redirect the output stream of the child process.
        p.StartInfo.UseShellExecute = false;
        p.StartInfo.RedirectStandardOutput = true;
        //Setup filename and arguments
        p.StartInfo.Arguments = String.Format("-y -i \"{0}\" -target ntsc-dvd -sameq -s 720x480 \"{1}\"", tempDir + "out.avi", tempDir + "out.mpg");
        p.StartInfo.FileName = "ffmpeg.exe";
        //Handle data received
        p.OutputDataReceived += new DataReceivedEventHandler(p_OutputDataReceived);
        p.Start();
    }

    void p_OutputDataReceived(object sender, DataReceivedEventArgs e)
    {
        Debug.WriteLine(e.Data);
    }

Ответы на вопрос(2)

Ваш ответ на вопрос