No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
1 additions and
2 deletions
-
vocoder/static/vocoder.js
|
@ -81,7 +81,6 @@ function setupRecording() { |
|
|
|
|
|
|
|
|
recording = new p5.SoundFile(); |
|
|
recording = new p5.SoundFile(); |
|
|
|
|
|
|
|
|
// TODO: buttons are just for experimenting ...
|
|
|
|
|
|
recordButton = createButton("record"); |
|
|
recordButton = createButton("record"); |
|
|
recordButton.position(10, 90); |
|
|
recordButton.position(10, 90); |
|
|
recordButton.mousePressed(record); |
|
|
recordButton.mousePressed(record); |
|
@ -200,7 +199,7 @@ function setup() { |
|
|
/** |
|
|
/** |
|
|
* The p5.js initial setup function. |
|
|
* The p5.js initial setup function. |
|
|
**/ |
|
|
**/ |
|
|
createCanvas(canvasWidth, canvasHeight); // TODO: experimenting for now ...
|
|
|
createCanvas(canvasWidth, canvasHeight); |
|
|
setupRecording(); |
|
|
setupRecording(); |
|
|
frameRate(frameRate); |
|
|
frameRate(frameRate); |
|
|
} |
|
|
} |
|
|