tags:

views:

8

answers:

1

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
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