FFmpeg-An audio/video conversion tool.
On this page
FFmpeg is a free and open-source software project consisting of a large suite of libraries and programs for handling video, audio, and other multimedia files and streams.
Basic conversion
sh
ffmpeg -i in.mov out.mp4
Combine multiple videos into one
First, make a text file, touch list.txt
.
txt
file 'in1.mp4'file 'in2.mp4'file 'in3.mp4'file 'in4.mp4'
sh
ffmpeg -f concat -i list.txt -c copy out.mp4