Log in

View Full Version : XviD -> No video stream found


MrTroy
16th February 2006, 21:56
I have an XviD + WAV for which I wrote the following script:

AVISource("C:\thevideo.avi")
WAVSource("C:\theaudio.wav")

But when I try opening it in VirtualDub, it just says "Error: no video stream found". I have the XviD codec installed, when I open the avi in VirtualDub it plays normally.

Is there something wrong with my script? Should I manually load the codec or something?


I'm sorry if this has come up before, I read the FAQ and used the search function, and found no answer.

Guest
16th February 2006, 22:07
That's because you are returning only an audio stream from your script. Try this:

vid=AVISource("C:\thevideo.avi")
aud=WAVSource("C:\theaudio.wav")
audiodub(vid,aud)

MrTroy
25th February 2006, 17:20
Thanks. I didn't realize AviSynth works that way.