Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Saving melt output to another avi/mp4 file

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?

like image 641
user1249655 Avatar asked Jul 26 '12 05:07

user1249655


1 Answers

Try

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

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

like image 165
fsantanna Avatar answered Nov 04 '22 02:11

fsantanna