Piping process output to new process

前端 未结 2 1877
闹比i
闹比i 2021-01-16 08:48

I am having issues piping the output from the rtmpdump process to ffmpeg and I believe the issue is my process is stealing the output of rtmpdump.

In my research I

相关标签:
2条回答
  • 2021-01-16 09:00

    I am learning as much as I am answering here.

    It seems there is not an easy way to manage multiple processes with the same name (int this case rtmpdump.exe).

    Instead of using process name or PID, there seems another way by using the console command START and giving different window title name to it started by START.

    In the command console, you would type in something like:

    C:\>start "dumpProc01" rtmpdump.exe -v -r .......
    C:\>start "dumpProc02" rtmpdump.exe -v -r .......
    C:\>start "dumpProc03" rtmpdump.exe -v -r .......
    

    And kill one specific process with the taskkill command. For example:

    C:\>taskkill /fi "windowtitle eq dumpProc01"
    

    To apply START to your process creation, the process argument would be:

    // from this
    p.StartInfo.Arguments = "/C rtmpdump.exe ....
    
    // to this
    p.StartInfo.Arguments = "/C start \"dumpProc01\" rtmpdump.exe -v -r ....
    

    And for killing a specific process you would make a taskkill process:

    Process kp = new Process();
    kp.StartInfo.FileName = "taskkill.exe";
    kp.StartInfo.Arguments = "/fi \"windowtitle eq dumpProc01\" ";
    kp.Start();
    

    You can give /min option for the start command like start /min ... to minimize windows.

    0 讨论(0)
  • 2021-01-16 09:02

    Came up with a simple solution.

    Using the the CMD process as your starting process.

    var p = new Process();
    p.StartInfo.FileName = "cmd.exe";
    p.StartInfo.Arguments = "/C rtmpdump.exe -v -r rtmp://somehost.com/app-name -o - |       ffmpeg.exe -loglevel quiet -i - -c:v copy -c:a libvo_aacenc -b:a 128k \"test.mp4\"";
    test.Start();
    

    And using this bit of code right after starting the process to get the last created rtmpdump process.

    Process[] allDumps = Process.GetProcessesByName("rtmpdump"); // get all rtmp processes
    if (allDumps.Any())
    {
        Process newestProcess = allDumps.OrderByDescending(x => x.StartTime).First(); // get the last one created     
        // Add the newly captured process to your list of processes for use later.
    }
    
    0 讨论(0)
提交回复
热议问题