Download
The first step is to download ffmpeg. It's a standalone binary so you don't need to install it. Just execute it directly.
Your (expired) Ubuntu version offers avconv which is missing many features including several concatenation functions.
Concatenate
Use the concat demuxer if you want to attempt to join them with no re-encoding. All videos must have the same parameters.
Use the concat filter if the videos vary in width, height, frame rate, etc. The filter will require re-encoding.
Note: You never did provide the info I requested a year and a half ago in my comments to your question, so I can't suggest which one you specifically need to use. Also, I can't provide examples specific to your inputs without this info, so the following examples are generic and may not work without additional options.
concat demuxer
Make a text file listing your inputs:
file 'input0.webm'
file 'input1.webm'
file 'input2.webm'
Now run ffmpeg:
ffmpeg -f concat -i input.txt -c copy output.webm
concat filter
In this example input1.webm has a bigger width x height than the others. This example command will scale input1.webm so it matches the other videos:
ffmpeg -i input0.webm -i input1.webm -i input2.webm -filter_complex \
"[1:v]scale=640:-1[v1]; \
[0:v][0:a][v1][1:a][2:v][2:a]concat=n=3:v=1:a=1[v][a]" \
-map "[v]" -map "[a]" output.webm
Also see
ffmpegfrom Libav is what was deprecated foravconv; notffmpegfrom FFmpeg. Unfortunately the maintainer refused to clarify that in the message resulting in confused users (and some think it was the intended effect). – llogan Jan 30 '15 at 20:21avconvdoesn't have the functionality of what I'm going to suggest. Include the full output of:ffmpeg -i input0.webm -i input1.webm -i input2.webm, etc. – llogan Jan 30 '15 at 20:27one.webm,two.webm,three.webmetc. and merge them intomerged.webm. – Mandar Pandit Jun 18 '16 at 06:20mencoder -oac copy -ovc copy -of lavf -o merged.webm one.webm, two.webm, three.webm. The only thing I noticed is the time shrink may be a bug or I'm missing something. – user.dz Jun 18 '16 at 23:45ffmpeg. In 14.04, even-i concat:..|..|.."didn't work for me, and the only solution I could get it to work ismencoderas mentioned in the above comment. May be compiling ffmpeg from source is an option. – user.dz Jun 19 '16 at 03:33ffmpegreturned to the repositories. – llogan Jun 19 '16 at 03:37