Saving melt output to another avi/mp4 file

14.2k views Asked by At

I am trying to use mltframework to merge 2+ videos. I want to generate another .avi file from these merged video files. How can I do this?

2

There are 2 answers

0
TeTeT On

Try $ melt -consumer avformat: for a basic working example. You may want to set some parameters for avformat so it looks nice.

2
fsantanna On

Try

melt {input-sequence} -consumer avformat:{output-name} acodec=libmp3lame vcodec=libx264

Substitute {input-sequence} and {output-name} to fit your needs.