ffprobe-static ==== Static binaries for `ffprobe`. OSX only at the moment, please send a PR if you would like to help with adding support for other platforms. Based on . Binaries are from Usage ---- ```js var ffprobe = require('ffprobe-static'); console.log(ffprobe.path); ``` Version Notes ---- Currently supports Mac OS X (64-bit), Linux (32 and 64-bit) and Windows (32 and 64-bit). Currently version `3.1` is installed for Mac and Linux, and `3.0.1` for Windows. I pulled the versions from the ffmpeg static build pages linked from the official ffmpeg site. Namely: * [64 bit Mac OSX](https://evermeet.cx/ffmpeg/) * [64 bit Linux](http://johnvansickle.com/ffmpeg/) * [32 bit Linux](http://johnvansickle.com/ffmpeg/) * [64 bit Windows](http://ffmpeg.zeranoe.com/builds/win64/static/) * [32 bit Windows](http://ffmpeg.zeranoe.com/builds/win32/static/) Acknowledgements ---- Special thanks to [eugeneware](https://github.com/eugeneware) for , which this is based upon.