
Do I run into legal problems when creating this plugin? - General …
Feb 15, 2024 · Hi, I have an idea for a plugin, but I’m not sure if I would run into legal problems. I want to create a plugin that allow people to create a model of their own instrument. A user with a piano can for instance record all kind of piano tones and the plugin will create a model from this to simulate this piano sound as good as possible. So far this is off course ok. But I want people to …
Fun with valgrind - Linux - JUCE
Jun 27, 2007 · I decided to give valgrind a try, and I’m sort of impressed. I ran my app through and horror of horrors, it it was leaking! However, I couldn’t see how the leak was my fault really. So I ran Juce demo through valgrind too, with much the same result. I am however still unsure how to read the results. Some entries like this one: ==2727== 112 (8 direct, 104 indirect) bytes …
OpenGL auto-detection - JUCE
Jun 12, 2017 · What are the minimum OpenGL requirements for JUCE’s OpenGLContext::attachTo(…) to work OpenGL 2 on desktop, OpenGL ES2.0 on mobile. If you want to override the defaults, you can call:
Using Datagram Socket waitForNextConnection method - JUCE
May 29, 2011 · Hi! I’ve been getting up to speed with juce recently, and have been loving it so far. Inevitably however my learning has taken me to a point where I’ve my first question for this forum 🙂 I’ve been looking at the example code in the “Juce Demo” for using sockets in interprocess connections, trying to adapt the code to work with the DatagramSocket class (UDP) instead of ...
Juce version 6, 7, ... schedule - Commercial / Licences - JUCE
Apr 28, 2017 · If Juce was on a 14-18 month release cycle then the decision would be easier, but as it stands anyone who has been paying month-to-month since 5.0 would have saved almost $600 if they had opted for a perpetual license at the outset.
Cuda phase vocoder - Audio Plugins - JUCE
Oct 10, 2018 · It would be fun to try and build a standalone juce audio application that did real time pitch detection and pitch shift in the GPU That might be on my wish list of fantasy JUCE features. I keep wondering about what audio effects can be improved by parralelisng stuff … the new i9 made me think about it more.clock speed is the same just more and more cores…sean
MidiInput question - General JUCE discussion - JUCE
Sep 13, 2010 · I just had a look at the MidiInput code on Windows. Might be a stupid question, but why is there actually a extra thread? Why not pass the MIDIMessage directly to the MidiInputCallback::handleIncomingMidiMessage() instead of doing it via an extra thread? The only reason I can imagine of is that you wanted to avoid the situation where slow user-code in …
VST3: JUCE loads programs from audio thread. Why?
Jan 20, 2020 · the JUCE VST3 wrapper processes changes to the wrapper-generated “program change parameter” from the audio thread. VST3 changes parameters on the audio thread, this is called ‘sample-accurate’ automation and is a very good thing.
Read/Write files - Android - JUCE
Mar 2, 2022 · No, that is exactly the behaviour I am struggling with. I tried all possible values of SpecialLocation (should have looked at File::getSpecialLocation() earlier…), but for none of the returned folders we get read permission, even after requesting RuntimePermissions::readExternalStorage. And that’s where I don’t really get the security …
Key-holding question - General JUCE discussion - JUCE
Jun 27, 2009 · Hi all, I need to implement key-holding, i.e. when someone presses a key in my app, I need to receive only one event, and then when he/she releases the key, I need to handle its release. JUCE behaves only in usual manner, sending multiple key events when I hold any key. Сan it somehow support key-holding itself or I need to make my own workaround for this? …