19.10.2020, 07:22
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:
or
Shouldn't ColorMatrix do the above?
I did try it as you described, I got the same results. And it renders to output file that way as well.
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.