From 61ac195f9467d9fa554b523bb5fe6ca5e662446f Mon Sep 17 00:00:00 2001 From: Jason Sigal Date: Mon, 6 Jan 2020 00:51:35 -0500 Subject: [PATCH] p5.sound 0.3.12 - improved inline documentation - all examples start audio on user gesture https://github.com/processing/p5.js-sound/pull/403 - AudioWorklet replaces the deprecated ScriptProcessorNode (when available) in p5.SoundRecorder, p5.Amplitude, and p5.SoundFile, as part of @oshoham's GSoC project https://github.com/processing/p5.js/blob/master/developer_docs/project_wrapups/orenshoham_gsoc_2019.md https://github.com/processing/p5.js-sound/pull/369 https://github.com/processing/p5.js-sound/pull/373 - p5 library compiled with webpack so it looks a little different and we had to remove comments that were tripping up YUIDoc here in the p5.js repo - p5.SoundFile: stop() won't stop a soundfile loop https://github.com/processing/p5.js-sound/issues/401 - p5.SoundFile: addCue() not triggering function calls https://github.com/processing/p5.js-sound/issues/371 - p5.SoundFile: jump() only called if soundfile is playing https://github.com/processing/p5.js-sound/pull/404 - p5.SoundFile: save() bugfix https://github.com/processing/p5.js-sound/pull/406 - remove bad console call (processing/p5.js-sound#378) --- lib/addons/p5.sound.js | 20599 +++++++++++++++++------------------ lib/addons/p5.sound.min.js | 31 +- 2 files changed, 9780 insertions(+), 10850 deletions(-) diff --git a/lib/addons/p5.sound.js b/lib/addons/p5.sound.js index 54261ee334..8580643c7b 100644 --- a/lib/addons/p5.sound.js +++ b/lib/addons/p5.sound.js @@ -1,41 +1,47 @@ -/*! p5.sound.js v0.3.11 2019-03-14 */ -/** - * p5.sound extends p5 with p5.sound extends p5 with Web Audio functionality including audio input, * playback, analysis and synthesis. - *

- * p5.SoundFile: Load and play sound files.
- * p5.Amplitude: Get the current volume of a sound.
- * p5.AudioIn: Get sound from an input source, typically - * a computer microphone.
- * p5.FFT: Analyze the frequency of sound. Returns - * results from the frequency spectrum or time domain (waveform).
- * p5.Oscillator: Generate Sine, + *

+ *