PDA

View Full Version : simple joining of mpegs?


swazzy
20th November 2004, 11:23
NEWBIE - All i want to to is join up some mpegs i have..also there are some mpa that need joining together...

Whats the easiest way i can do this?

Thanks all

Swazzy

akupenguin
20th November 2004, 22:15
cat file1.mpeg file2.mpeg > joined.mpeg

kilivipin
21st November 2004, 19:09
Originally posted by akupenguin
cat file1.mpeg file2.mpeg > joined.mpeg
What software do you use that with?

Krismen
21st November 2004, 20:55
Originally posted by akupenguin
cat file1.mpeg file2.mpeg > joined.mpeg
What software do you use that with?
Akupenguin used a command from linux/unix system. For M$ windows systems you can use:

copy /b file1.mpg+file2.mpg joined.mpg
from command line.