PDA

View Full Version : iPod Conversion: Joining two sequential avis into one mp4?


Agent86
30th December 2006, 09:37
Is there any language that can do this? I have two avis and want to use Avisynth to create just one output mp4 after conversion.

Thanks in advance.

Boulder
30th December 2006, 15:37
a=AVISource("clip1.avi")
b=AVISource("clip2.avi")
a++b

foxyshadis
30th December 2006, 15:41
Are the avis already in an ipod-ready format? If so, you might be able to use yamb+mp4box to just merge them without having to re-encode, much much faster. If not, ignore.