12

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?

Shubham AgaRwal
  • 4,355
  • 8
  • 41
  • 62
user1249655
  • 477
  • 1
  • 6
  • 17

2 Answers2

28

Try

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

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

fsantanna
  • 521
  • 5
  • 5
0

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

TeTeT
  • 2,044
  • 20
  • 30