<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Keith's Web Blog RSS Feed</title>
<language>en-us</language>
<link>http://www.keithwatanabe.net/index.php</link>
<description>Keith Watanabe's Website</description>
<item>
<title>ffmpeg and avimerge</title>
<link>http://www.keithwatanabe.net/blogs/2007/12/28/c03cdaf906d44299f97ee0f5af409756.html</link>
<description><![CDATA[Recently, I started messing with this tool.  It's quite nice actually.  Combine this with avimerge, you can convert vob files to a massive avi file.  I found some good settings with ffmpeg:<br />
<br />
$ffmpeg -i $input -f avi -vcodec xvid -b 8300 -g 300 -bf 2 -acodec mp3 -ab 128k $output<br />
<br />
where:<br />
<br />
$ffmpeg = /usr/bin/ffmpeg<br />
$input = (your vob file)<br />
$output = (your avi filename)<br />
<br />
You probably have to tweak the bitrate and your encoding type.  Also, you might have to tweak the screen size.  For that you'll have to use the -s switch and enter your size like 800x600.  Main thing is to check what the original format is so you can try to match your output.  In general, these settings seem to be the most useful for most purposes.<br />
<br />
If your avi files are split up, you can merge them together by using avimerge like:<br />
<br />
avimerge -o (output file) -i input1 input2 input3 input4...<br />
<br />
for example:<br />
<br />
avimerge -o myfile.avi -i f1.avi f2.avi f3.avi f4.avi<br />
<br />
Hope this helps people out there]]></description>
<pubDate>Fri, 28 Dec 2007 22:11:36 -0700</pubDate>
<guid>http://www.keithwatanabe.net/blogs/2007/12/28/c03cdaf906d44299f97ee0f5af409756.html</guid>
</item>
</channel>
</rss>
