Log in

View Full Version : playback problem with avisynth


2boxers
7th May 2004, 11:39
I am hoping somebody here can help me with this.

I am attempting to frameserve .VOB files using avisynth-2.54 using a .d2v project file as the source. I have tried dvd2avi versions 1.76 and 1.77.3dg1.1.0.

I have tried various MPEG decoders, MPEGDecoder.dll, MPEG2Dec3.dll, and MPEG2Dec3dg.dll.

In a nutshell, the problem is that Windows Media Player 6.4 claims that it cannot find a suitable decompressor for the video stream.

Yet if I do not use avisynth, I can play .m2v and .mpg just fine. I can also play the .VOB with powerdvd as well as if I rename the .VOB to .mpg WMP-6.4 plays it fine as well.

Here is my .avs script

#Version()
LoadPlugin("MPEG2Dec3dg.dll")
#LoadPlugin("MPEGDecoder.dll")
#LoadPlugin("MPEG2Dec3.dll")

MPEG2source("KB.d2v")
#MPEGsource("KB_176.d2v")
#MPEG2source("KB_176.d2v")

#LanczosResize(720,480)
#ResampleAudio(44100)

Also, I should mention that I can get it to work with Avisynth-2.05, but not with Avisynth-2.54. I really want to be using 2.54, so..

Any helpful suggestions would be appreciated,
Chas

scharfis_brain
7th May 2004, 11:55
install XVid or DivX

both are installing a YV12 decoder, that is needed for playback of YV12 video.

2boxers
7th May 2004, 12:31
This worked.

Thank you!