A minimal yet powerful wrapper for FFmpeg and FFprobe. Has built-in support for Node.js streams and events that can provide you a detailed progress report.
This is a hybrid package built in TypeScript that provides both CommonJS and ES modules with only a couple of dependencies.
npm install --save ffmpeggy
or
yarn add ffmpeggy
If you don't want to provide your own binaries, you can use the following packages that provides binaries for both ffmpeg and ffprobe:
npm install --save ffmpeg-static ffprobe-static
or
yarn add ffmpeg-static ffprobe-static
You can then change the default config to use the binaries like this:
import ffmpegBin from "ffmpeg-static";
import { path as ffprobeBin } from "ffprobe-static";
FFmpeggy.DefaultConfig = {
...FFmpeggy.DefaultConfig,
ffprobeBin,
ffmpegBin,
};
ffmpeggy comes with an intuitive api that allows you to work with it in your preferred way.
The most simple way to use ffmpeggy is with async/await.
import { FFmpeggy } from "ffmpeggy";
async function main() {
const ffmpeggy = new FFmpeggy();
try {
ffmpeggy
.setInput("input.mp4")
.setOutput("output.mkv")
.setOutputOptions(["-c:v h264"])
.run();
await ffmpeggy.done();
console.log(`Done =)`);
} catch {
console.error(`Something went wrong =(`);
}
}
To make use of all the bells and whistles of ffmpeggy you can hook into the events that are transmitted. All the events are fully typed!
import { FFmpeggy } from "ffmpeggy";
new FFmpeggy({
autorun: true,
input: "input.mp4",
output: "output.mkv",
outputOptions: ["-c:v h264"],
})
.on("start", (args) => {
console.log(`ffmpeg was started with these args:`, args);
})
.on("progress", (event) => {
console.log(`${event.progress}%`);
})
.on("error", (error) => {
console.error(`Something went wrong =(`, error);
})
.on("done", (outputFile) => {
console.log(`Done =)`);
});
You can provide streams directly to both input and output.
NOTE: ffmpeg uses filenames to detect a format and since a stream doesn't have a filename you need to explicitly add that option for each stream.
import { FFmpeggy } from "ffmpeggy";
new FFmpeggy({
autorun: true,
input: createReadStream("input.mkv"),
inputOptions: ["-f matroska"],
output: createWriteStream("output.mkv"),
outputOptions: ["-f matroska", "-c:v h264"],
});
You can also use the .toStream()
method to get a stream that you can pipe.
import { FFmpeggy } from "ffmpeggy";
const ffmpeggy = new FFmpeggy({
autorun: true,
pipe: true, // shorthand for output set to pipe:0
input: createReadStream("input.mp4"),
outputOptions: ["-c:v h264"],
});
const stream = ffmpeggy.toStream();
stream.pipe(createWriteStream("output.mkv"));
You can call the static FFmpeg.probe()
method, which returns a promise:
import { FFmpeggy } from "ffmpeggy";
const probeResults = await FFmpeggy.probe("input.mkv");
Or you can call .probe()
on an instance that will then run a probe on provided input
:
import { FFmpeggy } from "ffmpeggy";
const ffmpeggy = new FFmpeg({
input: "input.mkv",
});
const probeResults = await ffmpeggy.probe();
Name | Value | Description | Default |
---|---|---|---|
cwd |
string |
The working directory that ffmpeg will use | Current cwd |
input |
string | ReadableStream |
Input path or readable stream | Empty string |
output |
string | WritableStream |
Output path or writable stream | Empty string |
pipe |
boolean |
If output should be piped or not | Empty string |
globalOptions |
string[] |
An array of ffmpeg global options | Empty array |
inputOptions |
string[] |
An array of ffmpeg input options | Empty array |
outputOptions |
string[] |
An array of ffmpeg output options | Empty array |
autorun |
boolean |
Will call run() in the constructor if set to true |
false |
overwriteExisting |
boolean |
Shorthand to add -y to global options |
false |
hideBanner |
boolean |
Shorthand to add -hide_banner to global options |
true |
Fires when the ffmpeg process have been started. The ffmpegArgs
argument contains an array with the arguments that was passed to the ffmpeg process.
Fires when there was an error while running the ffmpeg process.
Fires when the ffmpeg process have successfully completed.
Fires when the ffmpeg process have exited.
Fires when the ffprobe process have returned its result.
Fires when ffmpeg is outputting it's progress. Most of the properties in FFmpegProgressEvent
are provided by ffmpeg's output, except duration
and percent
:
frame
: The current frame (i.e. total frames that have been processed)fps
: Framerate at which FFmpeg is currently processingsize
: The current size of the output in kilobytestime
: The time of the current frame in secondsbitrate
: The current throughput at which FFmpeg is processingduration
: The duration of the output in secondspercent
: An estimation of the progress percentageq
: The current quality scale (qscale). This is rarely used and is often just set to 0.
Note: If the operation is fast enough ffmpeg might not output a progress report that includes all the values so you need to handle that accordingly. This usually only happens when you copy directly from an input to an output without changing anything.
Fires when ffmpeg reports that it has begun writing to a file. This can be used to track which fragment ffmpeg is currently writing to or when it updates a playlist.
Note: ffmpeg may finish before outputting this event for every file so you need to handle that accordingly. Expect it to have successfully written every segment if it exits with error code 0.
Because I wasn't happy with the ones that already exists. Most of them are badly maintained, and/or lacking TypeScript typings or are too complex for my taste. I started coding on this a while back for another project and it's been working really well so figured it deserved it's own package.
They strive to solve different problems. Whereas ffmpeggy aims to be lean and simple, fluent-ffmpeg aims to provide an exhaustive and human readable API. I personally don't need all of that but I might revisit it at a later stage. But an extended API will most likely end up in a separate package to keep this one as lean as possible.
MIT