(FFMS2 ver 5.0) RGB: <img width="159" height="327" alt="Image" src="https://github.com/user-attachments/assets/5e4828ed-7df3-4a19-9e51-d523d0649366" /> Indexed: <img width="159" height="327" alt="Image" src="https://github.com/user-attachments/assets/22bcc286-d7b9-4bd9-8c13-0de98f0b7b61" /> Using AviSynth+ 3.7.5 on Windows x86-64, both obtained the correct colour. ```AviSynth StackHorizontal(FFMS2("rgb.png"), FFMS2("indexed.png")) ``` <img width="577" height="526" alt="Image" src="https://github.com/user-attachments/assets/8d87099e-5030-4a24-9e2f-6737fe25cb54" /> Using VapourSynth R72 on Windows x86-64, RGB is correct but indexed is incorrect. ```Python import vapoursynth as vs core = vs.core clip = core.std.StackHorizontal([core.ffms2.Source('rgb.png'), core.ffms2.Source('indexed.png')]) clip.set_output() ``` <img width="344" height="376" alt="Image" src="https://github.com/user-attachments/assets/4bb67f16-e062-42c2-a17a-383259afc924" />