A Node.js CLI frame plotter inspired on [FFmpeg plotframes](https://github.com/FFmpeg/FFmpeg/blob/master/tools/plotframes) but 350x faster!
![plot](http://i.imgur.com/i0iIg8D.png "plot")
Requirements:
* [gnuplot](http://www.gnuplot.info/)
* [FFmpeg >= 1.2 with the ffprobe command](https://www.ffmpeg.org/)
Installation and running
```
npm install plotframes -g
plotframes input.mkv
```
Usage
```
Usage: plotframes [OPTIONS]
options:
-h, --help Print this help and exit.
-i FILE, --input=FILE Specify multimedia file to read. This is the
file passed to the ffprobe command. If not
specified it is the first argument passed to
the script.
-s v, --stream=v Specify stream. The value must be a string
containing a stream specifier. Default value
is "v".
-o FILE.png, --output=FILE.png Set the name of the output used by gnuplot.
If not specified no output is created. Must
be used in conjunction with the terminal
option.
-t png, --terminal=png Set the name of the terminal used by
gnuplot. By default it is "x11". Must be
used in conjunction with the output option.
Check the gnuplot manual for the valid
values.
```
>**WARNING:** This is **NOT** a node.js module for inclusion in other Node.js scripts, it is just a CLI for use in the terminal/console, maybe in the future I'll see to integrate it somehow.