view TOOLS/mpconsole.sh @ 35134:2b037cee0795

ad_ffmpeg: basic support for planar formats. Upgrade to avcodec_decode_audio4(). Planar formats are immediately converted to packet formats. A lot of optimizations are still possible.
author cigaes
date Thu, 04 Oct 2012 18:04:42 +0000
parents 305dc504c407
children
line wrap: on
line source

#!/bin/sh
# Script to run mplayer on the console (fbdev/mga_vid/etc) without
# the console text and/or flashing cursor getting in the way.
# Written by Rich Felker.

trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT
res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'`
width=`echo "$res" | cut -d' ' -f2`
height=`echo "$res" | cut -d' ' -f3`
tput civis
clear
mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1