I've tried videora but I'm looking for something which will convert .vob files to the iPod Classic Video Format, Thanks.
@echo off
REM "C:\Program Files\VideoLAN\VLC\vlc.exe" -vvv "%1" :sout=#transcode{vcodec=mp4v,vb=1024,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="%1.mp4"}} vlc:quit --aspect-ratio "4:3" --sout-transcode-width 360 --sout-transcode-height 240 --sout-transcode-fps 30
@REM http://wiki.videolan.org/IPod
@REM Remove the quotes from %1 variable for vlc paramters
@SET infile=%1
@SET infile=%infile:"=%
@REM Strip directory paths from %1 ...
@FOR /F "delims=" %%i in ("%infile%") do SET filename=%%~ni
@SET outdir=E:\Videos\ipod\
@SET outfile=%outdir%%filename%.mp4
@REM The following command should be on ONE line only.
@REM Be sure to remove the carriage returns in your batch file.
"C:\Program Files\VideoLAN\VLC\vlc.exe" -vvv "%infile%" :sout="#transcode{width=320, canvas-height=240, vcodec=mp4v, vb=1024, acodec=mpga, ab=192, channels=2}:standard{access=file,mux=mp4,url=%outfile%}" vlc:quit