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?
Asked
Active
Viewed 1.4k times
2 Answers
28
Try
melt {input-sequence} -consumer avformat:{output-name} acodec=libmp3lame vcodec=libx264
Substitute {input-sequence}
and {output-name}
to fit your needs.

Mehmet Hakan Kurtoğlu
- 85
- 1
- 9

fsantanna
- 521
- 5
- 5
-
3Can you share an example or related links for absolute beginners – Shubham AgaRwal Jul 29 '18 at 14:44
-
6Example `melt in1.mp4 in2.mp4 -consumer avformat:output.mp4 acodec=libmp3lame vcodec=libx264` – DYZ Jun 14 '20 at 21:34
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