PDA

View Full Version : Strange full green frame in Avisynth


acrespo
20th October 2003, 14:30
I have capture anime videos with my TV Card with 320X480 (I tried 352X480 too). I capture with XVid codec quality based (100%) with iuVCR.

When I open captured video with Avisynth 2.53 with AviSource filter, I see strange full green frame sometimes in video. If I open with DirectShowSource filter the problem is not occurring. The problem is not occuring if I open the video in VirtualDub too.

I think there is a bug in AviSource filter.

Observation: This full green frame has a small yellow dot in different places.

Mug Funky
22nd October 2003, 18:28
do you have the latest xvid? it could be ass-ing up when it decodes -telling avisynth it's in yv12, and returning frames in yuy2 or something similar.

try the pixel_type="yuy2" or whatever option in avisource before you give up...

eg:

avisource("c:\my_viddy_cap.avi", pixel_type="yv12")

acrespo
22nd October 2003, 18:48
I was looking for informations to help me yesterday and I found the problem.

I have set YV12 in windows registry to decode with divx decoder. When I change to xvid the problem was solved. Here is the registry entry changed:

REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32]
"VIDC.YV12"="xvid.dll"

Just change xvid.dll to divx.dll and DivX decoder will be used instead of xvid decoder.