Log in

View Full Version : Muxxing VFAPIConv .avi with wav?


808state
8th March 2003, 20:04
Muxxing VFAPIConv .avi with wav?

I saw a guide on muxxing a VFAPI .avi file with a .wave file in virtualdub but can no longer find the guide or remember how I did it long ago.

Any help on this matter would be greatly appreciated!

TelemachusMH
8th March 2003, 21:41
I don't know how to mux it with VFAPI, but you can do it quite easily in avisynth. You could write a script similar to this puedo one:
LoadPlugin("mpeg2dec.dll")
video = mpeg2source("c:\path\video.d2v") # Dvd2avi project file
audio = WavSource("c:\path\audio.wav") # Needs to be a wav file
AudioDub(video, audio)
DelayAudio(0) # Delays the audio, units are in seconds NOT MILLISECONDS!


That will mux the video and audio so that it can be feed into VirtualDub.

Hope this helps,
TelemachusMH

bb
11th March 2003, 07:45
It should be possible to open the VFAPI avi through the File menu, and the WAV file through the Audio menu. In the Audio menu, you can either select a codec (full processing) or use Direct stream copy.

bb