C # uzyskać wyjście procesu podczas pracy

Czy mimo to ma przekierować standardowe wyjście spawpowanego procesu i przechwycić go, gdy się dzieje. Wszystko, co widziałem, po prostu kończy ReadToEnd. Chciałbym móc uzyskać dane wyjściowe podczas drukowania.

Edytować:

    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);
    }

questionAnswers(2)

yourAnswerToTheQuestion