
How to merge and trim video using VLC command line
A command line example of merging multiple video:
1 |
vlc in1.mp4 in2.mp4 --sout "#gather:std{access=file,dst=out.mp4}" --sout-keep |
where in1.mp4 and in2.mp4 are the file to merge, and out.mp4 is the result video. A […]