Okay. Then I have to assume your files were split as binary pieces and need to be concatenated back together. In that case, you can do this in Terminal.
Example:
cat file1 file2 file3 > newfile
You can leave the files named the way they are now. You don't have to go back to the .001 and such names. Assuming there are only two files, it would be:
cat part1.mp4 part2.mp4 > movie.mp4
This is simplified and assumes the files you want to join are in the current folder Unix (Terminal) is set to. Do this:
- Create a folder on your desktop. Keep it simple. Such as, name the folder z .
- Put your binary pieces into the folder.
- Launch Terminal from the /Applications/Utilities/ folder.
- Type the following in Terminal and press Enter: cd ~/Desktop/z
- Type cat part1.mp4 part2.mp4 > movie.mp4 , or whatever you want the output file name to be.
Test to see if the output file opens. It should.
Edit: I tried to cat two .mov files and it didn't work. You may need to first rename the files back to mp4.001 and mp4.002 .