1
0
mirror of https://github.com/danog/plotframes.git synced 2024-11-26 11:54:47 +01:00
Go to file
2015-10-14 12:22:43 -06:00
.gitignore code import 2015-10-11 16:53:13 -06:00
cli.js passing stdin and stdout from gnpuplot directly to the console 2015-10-14 12:22:43 -06:00
LICENSE Initial commit 2015-10-11 12:57:05 -06:00
package.json passing stdin and stdout from gnpuplot directly to the console 2015-10-14 12:22:43 -06:00
README.md This CRLF LF thing make me crazy 2015-10-14 10:32:55 -07:00

plotframes

A Node.js CLI frame plotter inspired on FFmpeg plotframes but 350x faster!

Frame Based Time Based

Requirements:

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 0, --stream=0                Specify stream. The value must be a string
                                    containing a stream specifier. Default value
                                    is "0".
    -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 "windows". Must be
                                    used in conjunction with the output option.
                                    Check the gnuplot manual for the valid
                                    values.
    -f, --frames                    Create a plot based on frame number instead
                                    of frame time.

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.

Installing dependencies

Windows

  1. Download and install Node.js
  2. Download a FFmpeg build, uncompress it into a directory that is included in the system %path%.
  3. Download and install gnpuplot:
    There are other downloads in case you want to download a different version.
  4. Open your Command Promt and run npm install plotframes.

OS X

  • Install Xcode from the App Store
  • Install Homebrew

Then, using Hombrew intall FFmpeg, XQuartz (needed to render to x11) and gnuplot.

brew install ffmpeg
brew install Caskroom/cask/xquartz
brew install gnuplot --with-x11

Ubuntu

Install Node.js

curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs

Install FFmpeg

sudo ppa-purge ppa:mc3man/trusty-media
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg

Install gnuplot

sudo apt-get install gnuplot-x11

Or do all at once

curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo ppa-purge ppa:mc3man/trusty-media
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg gnuplot-x11 nodejs

After that you can install plotframes, if it gives you a permision error, run sudo command before:

sudo npm install plotframes

License

(The MIT License)

Copyright (c) by Rodrigo Polo http://RodrigoPolo.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.