So I've done many rips of DVD .vob to Xvid .avi and then burned the resulting files to a DVD. This is mostly so I can make my movie collection more portable ... with a compression ratio of about 6:1 (1 dvd can hold 6 Xvid) that saves a lot of space in my luggage. These will play on portable players that support xvid.
Anyway, I use vobcopy to copy the vobs, and then use ffmpeg to encode them to avi. My question is: What are the best options to use. For the ffmpeg site I got that this is the typical way:
Code:
ffmpeg -i DVD_VIDEO1.vob -qscale 7 -vcodec libxvid -s 640x360 -r 23.976 -aspect 16:9 -ab 128k -ar 48000 -async 48000 -ac 2 -acodec libmp3lame -f avi -g 300 -bf 2 blues2.avi
Of course changing those parameters as necessary. I understand what all the above options mean.
But I also see in the ffmpeg FAQ that they recommend:
Code:
'-mbd rd -flags +4mv+aic -trellis 2 -cmp 2 -subcmp 2 -g 300 -pass 1/2', things to try: '-bf 2', '-flags qprd', '-flags mv0', '-flags skiprd'.
What do these options mean ? I've recently tried the first few, but they seem to cause unwanted artifacts in the resulting movie, flickering and twisting pixels especially in dark areas or uniformly colored areas. I think it's cause mostly by '-mbd rd' option. But I have no idea what any of these options mean and there seems to be no documentation for them. Anyone know what they might mean ?
Or, does anyone rip DVDs differently ? I've used mencoder for a while, but found that ffmpeg tends to give better results for some reason, the colors are brighter, the image less blurry, etc. Maybe it's just me ?