dnm-node-ffmpeg-installer

1.0.4 • Public • Published

dnm-node-ffmpeg-installer (forked from kribblo/node-ffmpeg-installer)

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 Windows 64bit 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.

Install

npm install --save dnm-node-ffmpeg-installer

Usage examples

const ffmpeg = require('dnm-node-ffmpeg-installer');
console.log(ffmpeg.path, ffmpeg.version);

process.spawn()

const ffmpegPath = require('dnm-node-ffmpeg-installer').path;
const spawn = require('child_process').spawn;
const ffmpeg = spawn(ffmpegPath, args);
ffmpeg.on('exit', onExit);

fluent-ffmpeg

const ffmpegPath = require('dnm-node-ffmpeg-installer').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);

Known issues

Warnings during install

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.

AWS and/or Elastic Beanstalk

If you get permissions issues, try adding a .npmrc file with the following:

unsafe-perm=true

See issue #21

Wrong path under Electron with Asar enabled

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('dnm-node-ffmpeg-installer').path.replace('app.asar', 'app.asar.unpacked');

The binaries

Downloaded from the sources listed at ffmpeg.org:

For version updates, submit issue or pull request.

Upload new versions

In every updated platforms/* directory:

npm run upload

See also

Package Sidebar

Install

npm i dnm-node-ffmpeg-installer

Weekly Downloads

6

Version

1.0.4

License

GPLv3

Unpacked Size

5.88 kB

Total Files

4

Last publish

Collaborators

  • yorshinnh
  • julien-milani
  • jordan-danim
  • krosnoz
  • fadrien
  • devdanim