This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[HELP] AviSynth 32 bit - ColorMatrix filter not working for video?
#5
For AviSynth, I believe it is working for the image stream, because it is an RGB image, and the script runs ConvertToYUY2(interlaced=false, matrix="Rec601")

That is what is actually doing the color palette shift. The ColorMatrix filter is not needed at that point.

So, a workaround for AviSynth for YUV video, is to use the following custom script:

ConvertToRGB(interlaced=false, matrix="Rec709")
ConvertToYUY2(interlaced=false, matrix="Rec601")

or

ConvertToRGB(interlaced=false, matrix="Rec709")
ConvertToYV12(interlaced=false, matrix="Rec601")

Shouldn't ColorMatrix do the above?


(19.10.2020, 07:16)Selur Wrote: Not at a computer till later today.
Does it work if you use the filter view like I described before?

Cu Selur

I did try it as you described, I got the same results. And it renders to output file that way as well.
Reply


Messages In This Thread
RE: AviSynth 32 bit - ColorMatrix filter not working for video? - by The_Tinkerer - 19.10.2020, 07:22

Forum Jump:


Users browsing this thread: 1 Guest(s)