how do I convert an .MTS file using ffmpeg into a .vob file?
A:
First convert the AVCHD into an MPEG. Then use tovid to author MPEGs into a DVD image(ie. make vobs).
ffmpeg -i "$mts_input" -aspect 4:3 \
-acodec ac3 -target ntsc-dvd \
-r 29.97 "$mpeg_output"
Actually, once you have the MPEGs, there are any number of programs like Tovid that will author a DVD. Many of them are GUI operated. I use Tovid to generate DVD laytouts programatically via its commandline interface. You may be more interested in its GUI
See Also
FFmpeg Tutorial Convert MTS/M2TS(AVCHD) to AVI
Tovid Format Conversion and DVD Authoring
DVD Author DVD Authoring via XML description
Frayser
2010-09-30 04:12:08
ToVid will handle the MTS([See Video Codecs](http://tovid.wikia.com/wiki/Supported_formats)), so the whole authoring process can be done in Tovid.
Frayser
2010-09-30 04:18:53