1.0.6 • Published 10 years ago

mjpeg2jpegs v1.0.6

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

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

1.0.6

10 years ago

1.0.5

11 years ago

1.0.4

11 years ago

1.0.3

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago