Thursday, December 4, 2014

Convert and burn mp4/flv/avi to dvd

Converting/burning .mp4 or .flv to dvd

You can do it 'by hand' if you like. First convert the video, pal 16:9 in this case:

Code:

ffmpeg -i input.mp4 -target pal-dvd -aspect 16:9 -ac 2 output.mpg

Then create the dvd structure:


Code:

dvdauthor -t -o dvd --video=pal -f output.mpg

dvdauthor -T -o dvd

and finally create the iso and burn it:

Code:

mkisofs -dvd-video -o output.iso dvd/

growisofs -dvd-compat -Z /dev/sr0=output.iso

                                   

No comments:

Post a Comment