aiko-chan-ai / fluent-ffmpeg-multistream-ts

Multiple stream inputs/outputs in fluent-ffmpeg.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fluent-ffmpeg-multistream-ts

This is a fork of https://github.com/dank074/fluent-ffmpeg-multistream-ts

Installation

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

Usage

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

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

About

Multiple stream inputs/outputs in fluent-ffmpeg.

License:MIT License


Languages

Language:TypeScript 100.0%