0.0.1 • Published 8 years ago

grunt-ffmpeg-libs v0.0.1

Weekly downloads
2
License
GPL-2.0
Repository
github
Last release
8 years ago

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']);