1.0.6 • Published 8 years ago

mjpeg2jpegs v1.0.6

Weekly downloads
5
License
MIT
Repository
github
Last release
8 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

8 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago