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?
Saving melt output to another avi/mp4 file
Asked Answered
Try
melt {input-sequence} -consumer avformat:{output-name} acodec=libmp3lame vcodec=libx264
Substitute {input-sequence}
and {output-name}
to fit your needs.
Can you share an example or related links for absolute beginners –
Brazzaville
Example
melt in1.mp4 in2.mp4 -consumer avformat:output.mp4 acodec=libmp3lame vcodec=libx264
–
Muskogee Try $ melt -consumer avformat: for a basic working example. You may want to set some parameters for avformat so it looks nice.
© 2022 - 2024 — McMap. All rights reserved.