We are about to switch to a new forum software. Until then we have removed the registration on this forum.
[edit]
Following code works for me ...
boolean recording;
void setup() {
`recording = false;
}
void draw() {
if (recording) {
`saveFrame("images/img####.jpg");`
}
}
void keyPressed() {
if (key == 's' || key =='S') {
recording = !recording;
}
}
then import sequence into preferred video editing software. (I use Adobe Premiere CC)