mplayer helper scripts

mplayer-benchmark

#!/bin/bash
 
# Quickly see if the video file is variable framerate or not
if [[ -f $1 ]]; then
	mplayer -benchmark -nosound -vo null $1
fi

Navigation