I've been using recordMyDesktop to record stuff. A little slow to compile but it records fine. However, when I try to convert from ogv to avi (I've used Devede and an mencoder script) the audio and video go out of sync.
Here's the script for reference:
#!/bin/bash
# ogv to avi
# Call this with multiple arguments
# for example : ls *.{ogv,OGV} | xargs ogv2avi
N=$#;
echo "Converting $N files !"
for ((i=0; i<=(N-1); i++))
do
echo "converting" $1
filename=${1%.*}
#mencoder "$1" -ovc xvid -oac mp3lame -xvidencopts pass=1 -o $filename.avi
mencoder "$1" -o $filename.avi -oac mp3lame -lameopts fast:preset=standard -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=4000
shift 1
done
Are there good reliable video converters out there? :)
You can use avconv to convert and optionally resize (it is included with ffmpeg):
This converts your video to a .avi file with mjpeg and mp2 codecs for good compatibility.
This converts your video using quality scale.
winff
Is a GUI for the command line video converter, FFMPEG. It will convert most any video file that FFmpeg will convert. WinFF does multiple files in multiple formats at one time. You can for example convert mpeg's, flv's, and mov's, all into avi's all at once.
You can try with ffmpeg:
In terminal type the following,
Change the input.ogv to the name of you of your ogv file.
You can also give the name for the output file by altering output.avi in the above command.
using the -idx switch fixed this for me...discussion here: http://ubuntuforums.org/showthread.php?t=665836
mencoder -idx input.ogv -ovc lavc -oac mp3lame -o output.avi
mencoder is very good at these sort of things. Earlier today I wrote about making screencasts in Ubuntu using recordmydesktop and then converting the ogv files into avi with xvid video and mp3 audio. You can find it at http://binwaheed.blogspot.com/2010/12/creating-screencast-in-ubuntu-linux.html
for me the next combination works
more detail here http://linux.bzic.org/cum-fac-screencast-captura-de-pe-monitor-in-ubuntu-gnulinux/
Try avidemux , it's available in the repositories and has a intuitive GUI.
Try Mobile Media Converter. It has a really simple GUI but it can do what you are trying to do.