Stops the recording process started by beginRecord() and closes the file. @webref output:files @webBrief Stops the recording process started by beginRecord() and closes the file @see PApplet#beginRecord(String, String)
()
| 10361 | * @see PApplet#beginRecord(String, String) |
| 10362 | */ |
| 10363 | public void endRecord() { |
| 10364 | if (recorder != null) { |
| 10365 | recorder.endDraw(); |
| 10366 | recorder.dispose(); |
| 10367 | recorder = null; |
| 10368 | } |
| 10369 | } |
| 10370 | |
| 10371 | |
| 10372 | /** |