<br clear="all"><pre style="margin: 0em;">> Can anyone show me what I need to change so my converted Myth<br>> recordings video aspect is not changed.<br><br>> I currently run the following command but my video aspect changes from
<br>> I'm guessing widescreen to 4:3 so the picture is squashed.<br><br>> mencoder input.mpg -ovc xvid -oac mp3lame -xvidencopts bitrate=800 -o output.avi<br><br>> Any suggestions or improvements on this command would be great.
<br><br>> I have done a bit of googling but could not find the answer.<br><br>I am not sure if I understood your question.<br>But when I want to fix the aspect ratio of an avi, I use this script:<br><br>#!/bin/sh<br># Author: Paulo Roma
<br># Changes the incorrect aspect ratio from avi files.<br># $1 is the name of the file to be converted without extension.<br># $2 is the aspect ratio.<br><br>if [[ $# != 2 ]]; then<br>      echo "fixaspect.sh [file] [aspect]"
<br>     exit 0;<br>fi<br><br>mencoder "$1".avi -o "$1".asp.avi -oac copy -ovc copy -force-avi-aspect "$2"<br><br></pre><br>-- <br>Paulo Roma Cavalcanti<br>LCG - UFRJ