Node.js:从jpeg图像到视频文件的实时转换

时间:2013-05-22 15:13:42

标签: node.js video ffmpeg socket.io jpeg

我正在使用node.js并通过socket.io库我收到了实际上是jpeg图像的数据块。这些图像是从远程网络摄像头捕获的实时视频的帧。我被迫将视频作为jpeg帧流式传输。我正在寻找一种在视频文件(mpeg 4或mjpeg文件)中即时转换这些jpeg图像的方法。节点是否有可以执行此操作的库?我已经看了Node-fluent-FFMPEG库,但是给出的唯一例子是将jpeg文件转换为视频,而不是从jpeg图像流中动态转换。或者,ffmpeg for windows是否支持jpeg图像流作为输入?

3 个答案:

答案 0 :(得分:0)

使用require("child_process")你可以使用ffmpeg,或者可能有npm模块来帮助解决这个问题。 ffmpeg将允许您首先获取jpeg列表并将其转换为视频,然后您可以将一个列表(或仅一个)jpeg添加到视频的开头或结尾。

答案 1 :(得分:0)

我认为你应该看看videofy

var exec = require("child_process").exec;
var escape = require("shell-escape");
var debug = require("debug")("videofy");
var mkdirp = require("mkdirp");
var uid = require("uid2");

/*
 *  Expose videofy
 */

module.exports = videofy;

/**
 * Convert `input` file to `output` video with the given `opts`:
 *
 *  - `rate` frame rate [10]
 *  - `encoders` the video codec format, default is libx264
 *
 * @param {String} input
 * @param {String} output
 * @return
 * @api public
 */
function videofy(input, output, opts, fn) {
    if (!input) throw new Error('input filename required');
    if (!output) throw new Error('output filename required');

    var FORMAT = '-%05d';

    // options
    if ('function' == typeof opts) {
        fn = opts;
        opts = {};
    } else {
        opts = opts || {};
    }

    opts.rate = opts.rate || 10;
    opts.codec = opts.codec || 'libx264';

    // tmpfile(s)
    var id = uid(10);
    var dir = 'tmp/' + id;
    var tmp = dir + '/tmp' + FORMAT + '.jpg';


    function gc(err) {
        debug('remove %s', dir);
        exec('rm -fr ' + dir);
        fn(err);
    }

    debug('mkdirp -p %s', dir);

    mkdirp(dir, function(error) {
        if (error) return fn(error);

        // convert gif to tmp jpg
        var cmd = ['convert', input, tmp];
        cmd = escape(cmd);

        debug('exec %s', cmd);
        // covert jpg collection to video
        exec(cmd, function(err) {

            if (err) return gc(err);

            var cmd = ['ffmpeg'];

            cmd.push('-f', 'image2');
            cmd.push('-r', String(opts.rate));
            cmd.push('-i', tmp);
            cmd.push('-c:v', String(opts.codec));
            cmd.push(output);

            cmd = escape(cmd);

            debug("exec %s", cmd);

            exec(cmd, gc);
        });
    });
}

答案 2 :(得分:0)

FFMPEG支持流作为输入,如docs中所述。

  

您可以向Ffmpeg命令添加任意数量的输入。输入可以   是一个可读的流

因此,例如它支持使用

ffmpeg().input(fs.createReadStream('/path/to/input3.avi'));

'/path/to/input3.avi'的文件中创建Readable stream

我对FFMPEG一无所知,但您可以从socket.io(已经是消息may be a Buffer)获取消息,并使用您自己的Readable stream实现来包装它。