# fluent-ffmpeg-multistream

> Adds support for multiple stream inputs/outputs to fluent-ffmpeg.

Latest version **1.0.0** (published 2019-03-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install fluent-ffmpeg-multistream
pnpm add fluent-ffmpeg-multistream
yarn add fluent-ffmpeg-multistream
bun add fluent-ffmpeg-multistream
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-03-31 |
| First published | 2019-03-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 10.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Thomas Mullen |
| Maintainers | rationalcoding |

## Links

- npm: https://www.npmjs.com/package/fluent-ffmpeg-multistream
- npm.io page: https://npm.io/package/fluent-ffmpeg-multistream

## Recent versions

- 1.0.0 (latest) — 2019-03-31

## README

# fluent-ffmpeg-multistream

[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

Uses Unix domain sockets to add support for multiple stream inputs/outputs to (`fluent-ffmpeg`)[https://github.com/fluent-ffmpeg/node-fluent-ffmpeg].

```javascript
const ffmpeg = require('fluent-ffmpeg')
const { StreamInput, StreamOutput } = require('fluent-ffmpeg-multistream')

ffmpeg()
	.input(StreamInput(readableStream1).url)
	.input(StreamInput(readableStream2).url)
	.output(StreamOutput(writableStream1).url)
	.output(StreamOutput(writableStream2).url)
```

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