How would one use video with alpha on linux?
Video I’m trying to use is .mov works perfect on mac os.
Is that a codec/format issue?
How could one convert it to something that would work on linux?
How would one use video with alpha on linux?
Video I’m trying to use is .mov works perfect on mac os.
usually setting the pixels format before loading the movie works:
player.setPixelsFormat(OF_PIXELS:RGBA);
player.load("...");
player.play();
slight correction.
it’s OF_PIXELS_RGBA
. (ie, underscore and not “:”)
Thanks again