I have multiple mkv files in a ubuntu directory.I have installed 'avconv' tool and its working fine. My aim is to simple concatenate all those files and produce a single mkv file. I referenced so many articles and found that this command should serve the purpose:
avconv -i "concat:1-1.mkv|1-2.mkv|1-3.mkv" -c copy 1.mkv
However, when I run it, I get error:
concat:1-1.mkv|1-2.mkv|1-3.mkv: No such file or directory
I even tried it with mp4 files but still the same error.
Can anyone point out what wrong I am doing ? Or there is any other approach ?