ffmpeg-ensure
v1.0.8
Published
Ensure ffmpeg is avialable on the local environment
Downloads
1
Readme
ffmpeg-ensure
Ensure that the utility file for ffmpeg is available on the current environment
Why?
I wanted to be able to use ffmpeg without needing to install it in advance on the environment.
currently only works on Windows
Usage
npm install --save ffmpeg-ensure
const { ensureFFMPEG } = require('ffmpeg-ensure');
ensureFFMPEG().then(() => {
console.log('done');
});