Abe Pazos
Abe Pazos
Yes, it is flipping it in those functions but I do not know what is the reason behind it. I guess in some situation it is required. Maybe @edwinRNDR can...
Noticed that this file seems to create regexes inside a while loop, but it's not this PRs fault.
Thanks for writing :-) Is the issue still there if you switch to the `next-version` branch of the template?
Hi! I suggest you ask in [the forum](https://discourse.processing.org/) for help debugging any issues related to the Video Export Library. Pull requests for fixes and improvements are welcome :)
Hi! :) Did you see the top of the README? Did you try the KotlinGradle branch?
Ah there's only one repo, you posted on the only one XD. So... I would be happy to receive pull requests to fix any issues. And to pass the repo...
```cpp ofSoundStreamSettings settings; settings.setInListener(this); settings.setOutListener(this); settings.numOutputChannels = 0; settings.numInputChannels = 2; settings.sampleRate = 44100; settings.bufferSize = 512; settings.numBuffers = 3; // setup the sound stream soundStream.setup(settings); //setup ofxAudioAnalyzer with the...
Hi, I've been using it with OF from git lately (March / May 2022). In Linux I had to compile fftw3f.a to make it work. For Apple M1 it's tricky...
Here how to make it run in M1 https://forum.openframeworks.cc/t/ofxaudioanalyzer-update/24712/27 So I would say the answer is that ofxAudioAnalyzer is compatible with OF 0.11
I go to this issue because I got confused between ofxJSON and ofxJsonSettings... If I get it right, this is how you do it? ``` ofxJSONElement data; data.load("file.json"); data["glossary"]["GlossDiv"]["GlossList"]["GlossEntry"]["SortAs"] =...