Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 775 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 775 Bytes

node-ffmpeg-binaries

A platform independent installer of FFmpeg

Supported architectures:

Linux | Windows | Mac
----- | ------- | ---
x64   | x64     | x64
ia32  | ia32    |
arm   |         |
arm64 |         |

API

node-ffmpeg-binaries exports an object containing the paths to the ffmpeg and ffprobe executables.

const ffmpeg = require('ffmpeg-binaries').ffmpeg;
//$PWD/node_modules/ffmpeg-binaries/bin/ffmpeg or ffmpeg.exe on Windows

const ffprobe = require('ffmpeg-binaries').ffprobe;
//$PWD/node_modules/ffmpeg-binaries/bin/ffprobe or ffprobe.exe on Windows

This software uses code of FFmpeg licensed under the LGPLv2.1.