A tutorial on how to convert .ovg files to .avi files in ubuntu.
If it wasnt implied, you have to be in the same directory as the file your converting.
The code by itself:
mencoder -idx filename.ogv -ovc lavc -oac mp3lame -o filename.avi
the Alias for the code:
alias convavi='echo Input file: ; read X; echo Output file: ; read Y; mencoder -idx $X -ovc lavc -oac mp3lame -o $Y'
Link to this comment:
All Comments (0)