Thursday, July 14, 2011

Creating a DVD Video Disc

I was asked to create a dvd out of 5 flash video files from youtube.
Also had to add 8 seconds of chapter title video using a png image for each chapter

Used devede on ubuntu.

create frames.txt:
for i in `seq 1 5`; do echo title.png; done > frames.txt

used mencoder:
mencoder mf://@frames.txt -mf w=800:h=600:fps=1:type=png -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o output.avi

I hope you found the post useful. You can subscribe via email or subscribe via a feed reader to get relevant updates from this blog. Have a nice day.