Re: How to combine .mov files?



On Sat, 01 Dec 2007 10:02:58 +0000, johnny bobby bee wrote:

Fred wrote:
Is there a Linux utility which will allow me to combine multiple .mov
files into one file? I know I can with cat, but the resulting file will
only play the first file combined.

mencoder -oac copy -ovc copy one.mov two.mov -o final.mov

or

avidemux has an append feature.



I received the error below from mencoder, which said to use "-oac pcm",
which I did like this and it worked:


mencoder -oac pcm -ovc copy file1.mov file2.mov -o final.mov


mencoder -oac copy -ovc copy GarthBrooks.mov chip_bag.mov -o final.mov
MEncoder SVN-r23784 (C) 2000-2007 MPlayer Team
CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (Family: 15, Model: 2, Stepping: 7)
CPUflags: Type: 15 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.

WARNING: OUTPUT FILE FORMAT IS _AVI_. See -of help.
success: format: 0 data: 0x0 - 0x50410c
Quicktime/MOV file format detected.
[mov] Video stream found, -vid 0
[mov] Audio stream found, -aid 1
VIDEO: [mp4v] 640x480 24bpp 30.166 fps 0.0 kbps ( 0.0 kbyte/s)
[V] filefmt:7 fourcc:0x7634706D size:640x480 fps:30.17 ftime:=0.0332
videocodec: framecopy (640x480 24bpp fourcc=7634706d)
Audio format 0x77616c75 is incompatible with '-oac copy', please try '-oac pcm' instead or use '-fafmttag' to override it.

Exiting...
.