mjpeg2jpegs

1.0.6 • Public • Published

mjpeg2jpegs

mjpeg2jpegs - convert a MJPEG stream to mutliple JPEGs

NPM Version NPM Downloads

It allows you to convert a MJPEG stream to multiple JPEGs, which is quite useful if you want to save the MJPEG stream from a webcam into a stream of JPEGs for further post-processing.

Example

var mjpeg2jpegs = require("mjpeg2jpegs");
var http = require("http");
http.request({
    hostname: "localhost",
    path: "/videostream.cgi",
}, mjpeg2jpegs(function (res) {
    res.on("imageHeader", function (header) {
        console.log("Image header: ", header);
    });
    res.on("imageData", function (data) {
        console.log("Image data: ", data.length);
    });
    res.on("imageEnd", function () {
        console.log("Image end");
    });
})).end();

Installation

npm install mjpeg2jpegs

License

MIT

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i mjpeg2jpegs

    Weekly Downloads

    0

    Version

    1.0.6

    License

    MIT

    Last publish

    Collaborators

    • sarosia