|
|
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:Note: I didn't post it in the audio section because this isn't a quot;realquot; audio issue of course..
quicktime?
moved
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..
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(quot;QTSource.dllquot;)
u=QTInput(quot 4060021.MOVquot;, color = 0, quality = 100, audio = true, mode = 2, raw = quot;yuyvquot;, info = 0, dither = 0)
v=QTInput(quot 4060021.MOVquot;, color = 0, quality = 100, audio = true, mode = 0, raw = quot;yuyvquot;, 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.
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.. |
|