save frames per second
in
Programming Questions
•
4 months ago
Hi! I have a problem with saving frames out of screencapturer. I have set up frameRate to 40 and in srenncapture too but I still get around 11 frames per second (I need not less that 25). How can get more frames? (by the way I have given to processing 8 000 mb of memore in settings)
// screencapturer
// info about the library and the link to download
http://www.onformative.com/lab/screencapturer/
import com.onformative.screencapturer.*;
ScreenCapturer capturer;
void setup() {
size(500, 500);
capturer = new ScreenCapturer(width, height, 30); // 30 = framerate of the capture
frameRate(40);
}
void draw() {
image(capturer.getImage(), 0, 0);
//saveFrame("/output/seq-####.tif");
1