annotate TOOLS/mpconsole @ 24824:70a64a5a85c3

r24740: misc roff fixes r24746: document filter -vf ow: Overcomplete Wavelet denoiser. r24772: DirectShow based tv:// driver for win32 r24783: Consistently set NOTE: in italics. r24784: small grammar fix r24785: Add -lavfdopts cryptokey r24807: Docs update: -ao openal handles more than one channels since some time already r24808: Add a space behind openal to get minimum length of 7 r24809: Replace Polyp- by PulseAudio output. r24820: Clarify that -vo gl bicubic filtering is B-spline, not polynomial r24837: Spelling, vf_ow parameters are optional. r24841: type fix: there was a 'not' too much
author voroshil
date Thu, 25 Oct 2007 17:37:49 +0000
parents a818bbab1525
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4204
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
1 #!/bin/sh
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
2 # Script to run mplayer on the console (fbdev/mga_vid/etc) without
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
3 # the console text and/or flashing cursor getting in the way.
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
4 # Written by Rich Felker.
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
5
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
6 trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT
7696
a818bbab1525 Fix usage for common users that may not have fbset in their path.
diego
parents: 4204
diff changeset
7 res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'`
4204
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
8 width=`echo "$res" | cut -d' ' -f2`
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
9 height=`echo "$res" | cut -d' ' -f3`
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
10 tput civis
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
11 clear
a451ba84410d console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff changeset
12 mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1