I have two MTS video files, each one 2 minutes long. I need to be able to join the files together and convert the format to MPEG4. I have a suitable command line for converting MTS to MP4 but don't know how to join the files together in the first place.
Some articles on the web suggest using the CAT command, like:
cat video1.mts video2.mts > whole_video.mts
However this doesn't work and according to FFMPEG, "whole_video.mts" is only 2 minutes long, not 4 minutes.
Does anyone know how to join the files together? Is FFMPEG the best program to use to do this? Thanks in advance.