grunt-ffmpeg-libs
v0.0.1
Published
Grunt task to download ffmpeg libs
Downloads
3
Maintainers
Readme
grunt-vlc-libs
Grunt task to download FFMPEG Libs
Install
$ npm install --save-dev grunt-ffmpeg-libs
Usage
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
grunt.initConfig({
ffmpeg_libs: {
options: {
dir: 'FFMPEG', // Output dir
force: true, // Overwrite
arch: 'ia32', // ia32 / x64
platform: 'win' // win / osx
}
}
});
grunt.registerTask('default', ['ffmpeg_libs']);