p5.js-sound
p5.js-sound copied to clipboard
p5.sound brings the Processing approach to Web Audio and p5.js. Demos:
With these https://github.com/processing/p5.js-sound/pull/483 https://github.com/processing/p5.js-sound/issues/480 we're no longer using an outdated p5.js library in our examples or local development, which is great. I wonder what we should do about the /examples...
processing/p5.js#3815 ## Most appropriate sub-area of p5.js? - [ x] Other (specify if possible) sound library #### Details about the bug: The documentation for p5.Oscillator is missing some existing trivial...
When loading many p5.SoundFiles (more than 150 in my case) the browser becomes slow. I've tried using the dispose() method or assigning the sound objects to null, but nothing seems...
Hi, I tried to run the get mic P5 exemple : https://p5js.org/examples/sound-mic-input.html The microphone are authorized But that's fail on all my monitor, same for Firefox & Chrome. I don't...
#### Nature of issue? - [x] Found a bug #### Most appropriate sub-area of p5.js? - [x] Sound #### Which platform were you using when you encountered this? - [x]...
Did any of y'all see https://github.com/processing/p5.js/issues/2920 ? Looks like there might be an issue with the minified p5js-sound distro? Not totally sure but wanted to make sure this was mentioned...
in the codebase https://github.com/processing/p5.js-sound/blob/e5a58ba1e3efa6f65c60da7a4513178fffa2df32/src/signal.js#L82 shouldn't it be `p5.Signal.prototype.fade = Signal.prototype.linearRampToValueAtTime;` otherwise we are adding the fade method to the tone.js Signal API , seems bit confusing to me :confused:
to make everything easier to mantain, i would delete the branch gh-pages, and on settings, make the hosting be built from the master branch. i don't know if something would...
I found a restart mode bug. If we use restart mode, `isPlaying()` function show a strange behavior. This is a sample code. ```js var sound; function preload() { sound =...
Hello Is there a way to "get" the tone or chord of a sound that is playing? e.g. analyzing the wave length in a certain time?