Hi. Im using this script to convert SBS so Red-Cyan:

Code:
DirectShowSource("E:\POTC4_SBS.mkv")
ConvertToRGB()
left=Crop(0,0,width/2,-0)
right=Crop(width/2,0,width/2,-0)
r=ShowRed(left)
g=ShowGreen(right)
b=ShowBlue(right)
MergeRGB(r,g,b)
this scripts works great but now when I try to convert it to ColorCode (Amber-Blue) I do not get no depth.

SBS to ColorCode script:

Code:
DirectShowSource("E:\POTC4_SBS.mkv")
ConvertToRGB()
left=Crop(0,0,width/2,-0)
right=Crop(width/2,0,width/2,-0)
r=ShowRed(left)
g=ShowGreen(left)
b=ShowBlue(right)
MergeRGB(r,g,b)
I tested it on Avatar and the ColorCode works perfectly, however when I tested it on Pirates Of The Caribbean 4 the depth is not present. Especially in the part where Penelope Cruz swings the sword trough door where Depp is standing. (Allso seen in trailers). Its like the scripts works only on some movies. I cant figure it out. Maybe my script is wrong. Please help...