I added "aspect=16:9" to the /etc/mplayer/mplayer.conf, instead of stretched to fill the whole screen, it shrinked to give me 4 borders. Is there any option to scale the video to fill the whole screen or having borders only at the top or bottom?
For wide videos (i.e. 16:9): "mplayer -vf crop=$((height*15/9)) video.avi" For tall videos (i.e. 4:3): "mplayer -vf crop=:$((width*9/15)) video.avi You'll have to substitute the video dimensions in the appropriate places.