# mjpeg-frame-stream

> MJPEG frame streang for NodeJS

Latest version **0.0.1** (published 2016-05-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install mjpeg-frame-stream
pnpm add mjpeg-frame-stream
yarn add mjpeg-frame-stream
bun add mjpeg-frame-stream
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2016-05-20 |
| First published | 2016-05-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4.0.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Alex Voronysnaky |
| Maintainers | belirafon |
| Keywords | mjpef, jpeg, frame |

## Links

- npm: https://www.npmjs.com/package/mjpeg-frame-stream
- Repository: https://github.com/BelirafoN/mjpeg-frame-stream
- Homepage: https://github.com/BelirafoN/mjpeg-frame-stream#readme
- Issues: https://github.com/BelirafoN/mjpeg-frame-stream/issues
- npm.io page: https://npm.io/package/mjpeg-frame-stream

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2016-05-20

## README

# MJPEG Frame Stream

This is a transform stream for MJPEG streams or any jpeg-streams. 

## Install

```bash
$ npm i mjpeg-frame-stream
```

## Usage 

```javascript
const MjpegFrameStream = require('mjpeg-frame-stream');
const fs = require('fs');

let mgpegStream = fs.createReadStream('./mjpeg.dump'),
    frameStream = new MjpegFrameStream();

mgpegStream.pipe(frameStream)
    .on('frame', frame => console.log(frame));

```

## License 

Licensed under the MIT License

---
_Source: https://npm.io/package/mjpeg-frame-stream · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
