Description of the problem: I want to record the screen of participants using the brush tool. I so far have the following code that takes each frame when drawing, and compiles to an mp4: (with Auto translation)
Under each frame:
win.getMovieFrame(). ← Python
psychoJS.window.getMovieFrame(); ← Java
Under end routine:
win.saveMovieFrames(expInfo[‘participant’] + “" + ‘.mp4’). ← Python
psychoJS.window.saveMovieFrames(((expInfo[“participant”] + "”) + “.mp4”)); ← Java
This works perfectly in the builder, but when I try on pavlovia I get this:
- TypeError: psychoJS.window.getMovieFrame is not a function
What can I do to resolve this? Any input welcome!