Visual Hub (and perhaps iSquint) can stitch together files it encodes. An example is converting multiple VOBs to a single MPEG-4 file for the iPod.
but will it combine multiple mpeg files into 1 mpeg file? that is what i am looking to do
I've used this:
http://www.biermann.org/philipp/mpegcut/
Every now and then it will not like the files I'm trying to join, but usually it works.
You have it alredy on your computer if you are running OS X and don't mind a bit of command line work 🙂 .
1. Open terminal
2. Change to the directory that contains the movies you want to join
3 type the following
cat "filename1".mpeg "filename2".mpeg < newfile.mpeg
After a bit of processing, the file will be complete.
The words in "" would be the name of the file you are trying to join to the other. You don't have to name the new file "newfile.mpeg" it was just an example 😀
OOPS!
Make sure you use the > not the < sign.
Sorry about that ! 😱
any or all of these reasons why i got an error? if not, how can i fix it correctly?
It's unlikely to work, as there are headers and footers in files of this type that get very confused when concatenated (that's what "cat" means).
The easiest way for you to try it is, open Terminal.app, type cat followed by a space, and then drag into the Terminal window (from the Finder) the first movie part you want to concatenate (make sure there's a space after the file name, but only 1 space), then then second file, and then > ~/Desktop/test.avi
So it will look something like this:
cat /Users/dwade/notporn/definitelynotporn1.avi /Users/dwade/notporn/definitelynotporn2.avi > ~/Desktop/test.avi
however, do not be tricked into thinking that i will not be using this new skill for porn, because i certainly will be, LOL.
That's a relief. Although I personally like to keep my porn separated so that I can decide which snippet I want to watch at that particular moment. 😱 😉 😀
ok, well i tried it, and it looked like it worked. it sent the test.avi file to the desktop, however it was only the 1st half still.
do i need to wait longer? is there a way to tell when it is done or when i should open the file?
Well, when the prompt comes back in Terminal.app, then it's done.
And it's only as long as the amount of clips you concatinate. You can,
cat file1 file2 file3 file4 file5 file6 > whatever
hmmm.. the prompt did come back and then i tried to view the file. it was only the 1st half.
It's unlikely to work, as there are headers and footers in files of this type that get very confused when concatenated (that's what "cat" means).
Then I must quote myself..
Well, iMovie can definitely do it. Open iMovie,
1 - create and name a project
2 - drag clip one in
3 - drag clip two in behind it
4 - export
It's unlikely to work, as there are headers and footers in files of this type that get very confused when concatenated (that's what "cat" means).
The easiest way for you to try it is, open Terminal.app, type cat followed by a space, and then drag into the Terminal window (from the Finder) the first movie part you want to concatenate (make sure there's a space after the file name, but only 1 space), then then second file, and then > ~/Desktop/test.avi
So it will look something like this:
cat /Users/dwade/notporn/definitelynotporn1.avi /Users/dwade/notporn/definitelynotporn2.avi > ~/Desktop/test.avi