Skip to content

Instantly share code, notes, and snippets.

View silmood's full-sized avatar

Petter Hdz silmood

  • GDG Androidtitlan
  • Mexico City
View GitHub Profile
@silmood
silmood / ccapture-p5js.js
Created July 6, 2021 23:49
ccapture-p5js.js
// Es necesario incluir la librería de CCapture dentro de tu proyecto: https://github.com/spite/ccapture.js/
let capturer
let renderer
let duration = 120
function setup() {
renderer = createCanvas(400, 400)
capturer = new CCapture( { format: 'png', framerate: 60, quality: 30 } )
frameRate(60)