I've been trying out VLC command line for processing user-recorded videos on the server-side before letting the users view them. The process involves adding sounds and music. One additional feature we'd like to implement is to merge two videos, resulting in a side-by-side video.
I've tried the following, slightly changed from the wiki:
Code: Select all
vlc -I dummy input1.mp4 input2.mp4 --sout=#gather:transcode{vcodec=h264,acodec=mpga}:std{access=file,mux=mp4,dst=output.mp4} --sout-all
Am I missing something? Does VLC have this feature?