PDA

View Full Version : MOV files editing


mod
13th March 2006, 12:38
Hi all,
I've recorded some video material with a Kodak Easyshare c330, and I want to make a short clip with it. I have no problems to edit the video, but I'm not able to edit it together with audio.
If someone can suggest a way to edit video and audio together or extract audio from the file it would be enough for me :)
I post here the specs from VLC:

http://img161.imageshack.us/img161/1582/vprop9yh.png

Note: I didn't post it in the audio section because this isn't a "real" audio issue of course..

bond
13th March 2006, 13:18
quicktime?

moved

mod
13th March 2006, 15:09
Thanks for reply (and for moving)
I've found QTInput for Avisynth, I don't know how I didn't see it before. Works perfectly..

AVIL
13th March 2006, 21:22
Hi,

You can also demultiplex video and audio streams with mp4box and yamb.

Aniway, QTinput runs fine. I have a Kodac CX7535 and use the script:

loadplugin("QTSource.dll")

u=QTInput("P4060021.MOV", color = 0, quality = 100, audio = true, mode = 2, raw = "yuyv", info = 0, dither = 0)
v=QTInput("P4060021.MOV", color = 0, quality = 100, audio = true, mode = 0, raw = "yuyv", info = 0, dither = 0)

return v.trim(1,4)+u

I have discovered that mode 0 gives four frames more than mode 2 but is more unstable. So, I use the script above.

mod
13th March 2006, 22:22
Thanks for suggestion AVIL. I'll see all lib options (now I cannot) and see if I have the same problem. Avisynth.. the answer was easy.. :D