processing-sound
processing-sound copied to clipboard
Audio library for Processing built with JSyn
*This might not be applicable, but I haven't found an answer to this anywhere for quite some time. I've attempted to download the Sound library through the contribution manager through...
macOS 10.14.1, Processing 3.4, Sound 2.0.2 Nov 12, 2018 12:30:43 AM com.jsyn.engine.SynthesisEngine start INFO: Pure Java JSyn from www.softsynth.com, rate = 44100, RT, V16.8.0 (build 463, 2017-10-16) Sound library error:...
The `AudioSample` class (and its `SoundFile` subclass) have a `.position()` method which is meant to provide the user with information on the current position of playback (or last queued-to/paused-at position)...
If you load a sound from disk and then repeatedly call the play method at short ( < 0.25 second ) intervals, without waiting for the previous sound to complete,...
Hi, I have a weird problem with sound in processing.py, I'm not sure if it's a bug or if I'm doing something wrong, but I've had a look around and...
Hi, I am wondering what would be the best way to write directly into output buffer - I would like to receive audio from stream as float or byte array...
I'm not sure if this issue is related to the latest version of sound or because I'm using v0.5.2 APDE. but it worked fine before. 
here is the code: ``` import processing.sound.*; SoundFile menuTheme; void setup(){ menuTheme=new SoundFile(this, "s8.wav"); menuTheme.loop(); } void draw(){ background(255); } @Override public void onBackPressed(){ println("on back pressed"); menuTheme.stop(); super.onBackPressed(); }...
Hi, I just run a test on Windows 10, filtering only multichannel devices listed using `if (MultiChannel.usePortAudio()) {` All MME drivers are working properly. However all ASIO and WDM-KS drivers...
21ca5b8273f7f1b973218d4bca8590eb6801824e adds support for ASIO devices on Windows (through PortAudio). By default the Sound library will try to stick to JavaSound drivers if possible, so some multi-channel interfaces might only...