PDA

View Full Version : BlindPP: work in YV12 colorspace ?


Big2hd
28th January 2004, 02:47
Hello first time here, and I use script to make kvcd's but I figured since it does use avisynth I could get some help here.

I keep getting a "BlindPP: work in YV12 colorspace" error with this script:

AviSource("C:\Documents and Settings\Big2HD\My Documents\My Videos\.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(528, 480, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5623)
GripBorders()

Any help is appriecated thx in advance(btw I'm using version 2.5.4)

Manao
28th January 2004, 07:54
Put a convertToYV12() before your blindPP in order.

If your avi contains either XviD, DivX 5 or ffvfw, you can also ( instead of using convertToYV12() ) try putting pixel_type = "YV12" inside the AVISource line.

Big2hd
28th January 2004, 08:15
thx I'll try it :)