PiXuS
9th October 2004, 15:33
I found this thread (http://forum.doom9.org/showthread.php?s=&threadid=64253&highlight=pixiedust+pink) where there is mention of the problem I am facing right now.
Here is a screenshot of the problem in static action:
http://img39.exs.cx/img39/4210/pink_shit.th.png (http://img39.exs.cx/my.php?loc=img39&image=pink_shit.png)
I tried to remove PixieDust from my script and it fixed the problem. Though, reading the thread I point to, it seems the problem is really about the color conversion neeeded to use the plugin.
Wilbert was proposing to use a mod4 cropping. I already do that (my crop params are 22,70,664,344). But using Lanczos4Resize the alternative way (with the cropping, i.e. Lanczos4Resize(800x336,22,70,664,344)) fixed the problem.
I guess that is because in my script, the Lanczos call is after the color conversion.
So.. am I stuck with this problem? I will need to apply the cropping after PixieDust is called? Big loss? Should I hang myself?
PiXuS
EDIT: Well, it IS PixieDust that cause the problem. I tried the following combinations:
Crop()
ConvertToYUY()
PixieDust()
ConvertToYV12()
Lanczos4Resize()
Generates pink bars. Proves there is a problem. ;)
Crop()
ConvertToYUY()
#PixieDust()
ConvertToYV12()
Lanczos4Resize()
No pink bars. Proves the color conversion is safe.
ConvertToYUY()
PixieDust()
ConvertToYV12()
Crop()
Lanczos4Resize()
No pink bars. Proves PixieDust can be used IF cropping is done after PixieDust.
Gaw.
PiXuS
Here is a screenshot of the problem in static action:
http://img39.exs.cx/img39/4210/pink_shit.th.png (http://img39.exs.cx/my.php?loc=img39&image=pink_shit.png)
I tried to remove PixieDust from my script and it fixed the problem. Though, reading the thread I point to, it seems the problem is really about the color conversion neeeded to use the plugin.
Wilbert was proposing to use a mod4 cropping. I already do that (my crop params are 22,70,664,344). But using Lanczos4Resize the alternative way (with the cropping, i.e. Lanczos4Resize(800x336,22,70,664,344)) fixed the problem.
I guess that is because in my script, the Lanczos call is after the color conversion.
So.. am I stuck with this problem? I will need to apply the cropping after PixieDust is called? Big loss? Should I hang myself?
PiXuS
EDIT: Well, it IS PixieDust that cause the problem. I tried the following combinations:
Crop()
ConvertToYUY()
PixieDust()
ConvertToYV12()
Lanczos4Resize()
Generates pink bars. Proves there is a problem. ;)
Crop()
ConvertToYUY()
#PixieDust()
ConvertToYV12()
Lanczos4Resize()
No pink bars. Proves the color conversion is safe.
ConvertToYUY()
PixieDust()
ConvertToYV12()
Crop()
Lanczos4Resize()
No pink bars. Proves PixieDust can be used IF cropping is done after PixieDust.
Gaw.
PiXuS