Log in

View Full Version : What happens to my video?


sunnysixkiller
3rd July 2003, 06:23
I am trying to frameserve from Avisynth 2.5 into VdubMod and something isn't quite right.

My avs script is as follows:

LoadPlugin("MPASource.dll")
LoadPlugin("MPEGDecoder.dll")
MPEGSource("e:\Recording\Test.mpg")
MPASource("e:\Recording\Test.mp2")

Rather simple, but the problem is I can hear audio, but the video windows are two small squares with no video. If I "REM" or # out the MPASource line so the script looks like this:

LoadPlugin("MPASource.dll")
LoadPlugin("MPEGDecoder.dll")
MPEGSource("e:\Recording\Test.mpg")
#MPASource("e:\Recording\Test.mp2")

I get video but obviously no audio.

My questions is what is causing the first script to output no video in Vdub? Am I doing something wrong?

Thanks for the help guys and girls. If you need any other information, please feel free to ask.

Craig

Awatef
3rd July 2003, 07:20
Why don't you load the MPG file directly in VDubMod?! :confused:

Wilbert
3rd July 2003, 10:08
Try (as can be seen in the readme):

LoadPlugin("MPASource.dll")
LoadPlugin("MPEGDecoder.dll")
v=MPEGSource("e:\Recording\Test.mpg")
a=MPASource("e:\Recording\Test.mp2")
audiodub(v,a)

sunnysixkiller
3rd July 2003, 14:26
Thanks Wilbert, that worked.

Awatef-As crazy at it sounds, when I load the mpg directly into Vdub, it thinks the Video is 10 minutes shorter than it is, and the audio/video sync is out of wack.

When I serve it in via AviSynth, eveything is as it should be.

Weird, but it works, so I am not complaining.