1.0.3 • Published 12 months ago

@dank074/fluent-ffmpeg-multistream-ts v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

fluent-ffmpeg-multistream-ts

This is a fork of https://github.com/t-mullen/fluent-ffmpeg-multistream

Installation

npm install @dank074/fluent-ffmpeg-multistream-ts

Usage

const ffmpeg = require('fluent-ffmpeg')
const { StreamInput, StreamOutput } = require('@dank074/fluent-ffmpeg-multistream-ts')

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