You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@kunzberg I tried that fix in the render method, but still getting a strange crop&translate on my video. Only rendering the upper right quadrant of the video. I'm on OSX 10.10
hi kronick
for some reason the video was translated in osx mavericks
in ofxAVFVideoRenderer i fixed this by
self.layerRenderer.bounds = CGRectMake(0, 0, videoSize.width, videoSize.height);
[self.layerRenderer.layer setAnchorPoint:CGPointMake(0.0, 0.0)];
and commenting out the translation in the render function...
everything renders fine now from 10.7 to 10.9
greetings ascorbin
The text was updated successfully, but these errors were encountered: