Kevin

Results 66 comments of Kevin

The following did it for me on OSX 10.13: > $ brew install rust > $ rustup-init (confirm defaults by pressing [Enter]) > $ cargo install dijo

I'd be curious about that as well, the 3.0.12 python bindings don't seem to export the Stroke class at all, which makes it impossible to work with most of the...

@Tech-TX thanks so much for all this work and documentation! I just spent several hours trying to track down a weird Heisenbug-like issue where I wasn't able to send my...

> The optional item for Forced Light Sleep are whether you wanted a callback, which GPIO to use for the interrupt, and whether it's LOLEVEL or HILEVEL. It should maybe...

@robog-two could you try calling `Sound.list()` and copy-pasting the output of the sketch here? I wonder if the problem is that the virtual interface provides a lot of channels, and...

So the current state is no sound at all, or distorted sound?

Thanks for reporting, have you tried changing the input away from the default audio device? Call ``` Sound.list(); ``` to see the list of available audio devices on your computer,...

Thanks for the detailed report, I'll keep this issue open so that other people can find it too if they run into the same problem.

@guilebarros have you tried the solution in https://github.com/processing/processing-sound/issues/30#issuecomment-487896344 above? Regarding getting a permission request popup during runtime instead of having to set the permission manually up front in the MacOS...

Currently there are only two built-in types of analysis available in the Sound library: `Amplitude` for 'loudness', and `FFT` for frequency spectrum analysis. You can derive more complex audio features...