管道Node.js中的两个子进程之间的管道?

时间:2014-05-04 12:13:25

标签: javascript node.js ffmpeg child-process media-source

我正在尝试使用带有Node.js的FFmpeg捕获视频,并通过websockets将其发送到浏览器以使用MediaSource API进行播放。到目前为止,我在Firefox中工作但在Chrome中无法正确解码。显然,从阅读this question开始,我需要使用sample_muxer程序来确保每个“集群”都以关键帧开头。

这是我正在使用的代码:

var ffmpeg = child_process.spawn("ffmpeg",[
    "-y",
    "-r", "30",

    "-f","dshow",           
    "-i","video=FFsource:audio=Stereo Mix (Realtek High Definition Audio)",

    "-vcodec", "libvpx",
    "-acodec", "libvorbis",

    "-threads", "0",

    "-b:v", "3300k",
    "-keyint_min", "150",
    "-g", "150",

    "-f", "webm",

    "-" // Output to STDOUT
]);

ffmpeg.stdout.on('data', function(data) {
    //socket.send(data); // Just sending the FFmpeg clusters works with Firefox's 
                         // implementation of the MediaSource API. No joy with Chrome.

    // - - - This is the part that doesn't work - - -
    var muxer = child_process.spawn("sample_muxer",[
        "-i", data, // This isn't correct...

        "-o", "-" // Output to STDOUT
    ]);

    muxer.stdout.on('data', function(muxdata) {
        socket.send(muxdata); // Send the cluster
    });
});

ffmpeg.stderr.on('data', function (data) {
    console.log("" + data); // Output to console
});

显然我没有正确使用它,而且我不确定我会怎么做,同时还包括参数。感谢任何帮助实现这一目标。谢谢!

1 个答案:

答案 0 :(得分:2)

sample_muxer程序将-i参数作为文件名。它无法将视频数据作为标准输入读取。要查看错误,您应该将错误流从sample_muxer发送到错误日志文件。

var muxer = child_process.spawn("sample_muxer",[
    "-i", data, // This isn't correct...
    "-o", "-" // Output to STDOUT
]);

此代码将导致https://code.google.com/p/webm/source/browse/sample_muxer.cpp?repo=libwebm#240

错误

您可以尝试从ffmpeg写入文件,然后从sample_muxer读取该文件。一旦有效,请尝试使用FIFO文件将数据从ffmpeg传输到sample_muxer。