arturo

Results 159 comments of arturo

Aren't the apothecary scripts running in the CI servers?

ofPixels already supports yuv so it should be relatively straight forward to implement getPixels() too. doing colorspace conversion is really cpu intensive so it's really possible that it's what causing...

@i-n-g-o we already have everything in place to do gpu colorspace conversion and specify the pixel format for the player. the api works like: ``` video.setPixelFormat(OF_PIXELS_I420); ``` which would select...

@i-n-g-o the idea about OF_PIXELS_NATIVE is that it should use the fastest format available and there should be no conversion at all, even if that format is yuv. then when...

in case it's helpful for testing, when i implemented this for gstreamer the most common native format for most compressed video formats is I420

we can also add more pixel formats and shaders if it's needed. the idea is that the file itself is ina certain colorspace before encoding it so using that colorspace...

Have you tried disabling antialiasing? in main set window settings numSamples to 0 or in setup call ofDisableAntialiasing()

no, ofDisableSmoothing is a different thing and is disabled by default, i was saying ofDisableAntialiasing() but numSamples=0 should have the same effect