Mercurial > mplayer.hg
view TOOLS/mpconsole @ 7436:ef1daba63c30
Sync with upstream version. According to Edouard Gomez:
- better defaults for some vbr_state_t attributes.
- twopass_max_bitrate has been set to much higher default, so nasty
blocking effects during scene changes and/or high motion scenes is
no more.
author | kmkaplan |
---|---|
date | Wed, 18 Sep 2002 01:32:32 +0000 |
parents | a451ba84410d |
children | a818bbab1525 |
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=`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