Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@ffmpeg-installer/ffmpeg
Advanced tools
Platform independent binary installer of FFmpeg for node projects
@ffmpeg-installer/ffmpeg is an npm package that provides a simple way to install the FFmpeg binary. FFmpeg is a powerful multimedia framework that can decode, encode, transcode, mux, demux, stream, filter, and play almost anything that humans and machines have created. This package makes it easy to include FFmpeg in your Node.js projects without worrying about the complexities of installing it manually.
Video Conversion
This feature allows you to convert video files from one format to another. The code sample demonstrates converting an MP4 file to an AVI file using the FFmpeg binary.
const ffmpeg = require('@ffmpeg-installer/ffmpeg');
const { exec } = require('child_process');
exec(`${ffmpeg.path} -i input.mp4 output.avi`, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
return;
}
console.log(`Stdout: ${stdout}`);
});
Audio Extraction
This feature allows you to extract audio from a video file. The code sample demonstrates extracting the audio from an MP4 file and saving it as an MP3 file.
const ffmpeg = require('@ffmpeg-installer/ffmpeg');
const { exec } = require('child_process');
exec(`${ffmpeg.path} -i input.mp4 -q:a 0 -map a output.mp3`, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
return;
}
console.log(`Stdout: ${stdout}`);
});
Video Compression
This feature allows you to compress video files to reduce their size. The code sample demonstrates compressing an MP4 file using the H.265 codec.
const ffmpeg = require('@ffmpeg-installer/ffmpeg');
const { exec } = require('child_process');
exec(`${ffmpeg.path} -i input.mp4 -vcodec libx265 -crf 28 output.mp4`, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
return;
}
console.log(`Stdout: ${stdout}`);
});
fluent-ffmpeg is a Node.js module that provides a fluent API for working with FFmpeg. It allows you to perform complex video and audio processing tasks with a more readable and maintainable syntax compared to using raw FFmpeg commands. It also handles the installation of FFmpeg binaries for you.
ffmpeg-static is an npm package that provides static binaries for FFmpeg. It simplifies the process of including FFmpeg in your Node.js projects by providing precompiled binaries for various platforms. Unlike @ffmpeg-installer/ffmpeg, it focuses solely on providing the binaries without additional features.
node-ffmpeg is a Node.js module that provides a simple interface for using FFmpeg. It allows you to perform basic video and audio processing tasks, such as conversion and extraction, with a straightforward API. It is less feature-rich compared to fluent-ffmpeg but can be easier to use for simple tasks.
Platform independent binary installer of FFmpeg for node projects. Useful for tools that should "just work" on multiple environments.
Installs a binary of ffmpeg
for the current platform and provides a path and version. Supports Linux, Windows and Mac OS/X.
A combination of package.json fields optionalDependencies
, cpu
, and os
let's the installer only download the binary for the current platform. See also "Warnings during install", below.
npm install --save @ffmpeg-installer/ffmpeg
const ffmpeg = require('@ffmpeg-installer/ffmpeg');
console.log(ffmpeg.path, ffmpeg.version);
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const spawn = require('child_process').spawn;
const ffmpeg = spawn(ffmpegPath, args);
ffmpeg.on('exit', onExit);
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);
To automatically choose the binary to install, optionalDependencies are used. This currently outputs warnings in the console, an issue that is tracked by the npm team here.
If you get permissions issues, try adding a .npmrc file with the following:
unsafe-perm=true
See issue #21
It's a known issue that Asar breaks native paths. As a workaround, if you use Asar, you can do something like this:
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path.replace('app.asar', 'app.asar.unpacked');
If you need to install a version of ffmpeg
that differs than your current platform (e.g. compiling a Linux version to upload to AWS Lambda from MacOS), you can use npm install @ffmpeg-installer/linux-x64 --force
(substituting linux-x64
with whatever platform you need). Note that if you are compressing your project into a .zip
for Lambda, you will need to exclude the other platforms' builds from your archive.
Downloaded from the sources listed at ffmpeg.org:
For version updates, submit issue or pull request.
In every updated platforms/*
directory:
npm run upload
FAQs
Platform independent binary installer of FFmpeg for node projects
We found that @ffmpeg-installer/ffmpeg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.