#!/bin/sh
#
# ffmpeg-thumbnailer - thumbnailer script for PS files.
#
# Usage: ffmpeg-thumbnailer video-file png-file size
#

# command line parameters
ifile=$1
ofile=$2
size=$3

ffmpegthumbnailer -i "${ifile}" -o "${ofile}" -s "${size}" -f -t 15
