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