Log in

View Full Version : How to serve DV type 1 video + audio


Colp
29th April 2004, 19:58
Hi,

I'm trying to serve DV type 1 file through avisynth so that both video and audio are output. So far I only get video but no audio at all. Script I'm using is

AviSource(...)
BilinearResize(480,576)

Is it possible to get both audio and video such way or what should I change?

bb
30th April 2004, 07:10
You have to save your audio in a separate WAV file (using your NLE). Then you may use WAVSource/AudioDub to open it in AviSynth. Anything else does not work as far as I know.
v=AviSource("C:\DV\MyFilm.avi")
a=WavSource("C:\DV\MyFilm.wav")
AudioDub(v, a)
You may use DirectShowSource instead of AviSource.

Another option is to convert to type-2 (free converters available, see DV forum). This way you can use the audio directly from the AviSource (no need for WAVSource/AudioDub then).

bb

Colp
3rd May 2004, 06:36
Thanks, this answer helped me to get solution.