Mercurial > mplayer.hg
view version.sh @ 2336:b2e0b131c1a7
Again changed logic:
-screenw, -screenh - force user video mode
-x, -y - force userdefined prescaling
-bpp - forces userdefined bpp
-zoom - enables prescaling (-x, -y)
-fs - scales image to fullscreen (same as ATI's divx/dvd player)
-zoom -fs - (together) scales userdefined prescaling to fullscreen
So full command line should be:
mplayer -vo vesa -screenw WWW -screenh HHH -bpp BPP -x XXX -y YYY -zoom -fs filename
And you will be able to watch movies in 16:9 format with bold black
border at top and bottom of screen.
author | nick |
---|---|
date | Sun, 21 Oct 2001 14:30:36 +0000 |
parents | 24c6d8b06b26 |
children | 7fa3a928631a |
line wrap: on
line source
#!/bin/sh last_cvs_update=`date -r CVS/Entries +%y%m%d-%H:%M 2>/dev/null` if [ $? -ne 0 ]; then # probably no gnu date installed(?), use current date last_cvs_update=`date +%y%m%d-%H:%M` fi echo "#define VERSION \"CVS-${last_cvs_update}\"" >version.h