Linux – Joining webm videos under Linux

linuxvideo editingwebm

How can I concatenate several .webm files (e.g. downloaded from youtube) into a single file? I've tried a simple cat followed by "mencoder -forceidx -oac copy -ovc copy …" – didn't work. I'm using Linux.

Best Answer

As Lou mentioned, try mkvmerge like this (from command line):

mkvmerge -o output.webm -w file1.webm + file2.webm

Related Question