ffprobe-mini
v1.0.1
Published
Simple implementation of FFprobe file analize
Downloads
163
Readme
ffprobe-mini
Simple implementation of FFprobe file analize
Usage Example
const ffprobe = require('ffprobe-mini');
var opts = {
ffprobePath: '/path/to/ffprobe', // Optional (uses bin in $PATH by default)
filePath: '/path/to/video.mkv', // Path to media file (required)
promise: false // Optional (data in callback by default)
}
ffprobe(opts, (err, data) =>
{
if(err) return console.error(err);
console.log(data);
});