
Do I run into legal problems when creating this plugin? - General …
2024年2月15日 · 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
2007年6月27日 · 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
2017年6月12日 · 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
2011年5月29日 · 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 ...
Using External Frameworks Within JUCE
2019年6月19日 · You would use both JUCE & the other library inside of Xcode on Mac. You can certainly use external libraries alongside JUCE as long as their functionalities do not clash. Simpler libraries which are meant for specific purposes will be much easier to use in conjunction with JUCE than a large framework meant for full application development akin ...
Juce version 6, 7, ... schedule - Commercial / Licences - JUCE
2017年4月28日 · 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.
VST3: JUCE loads programs from audio thread. Why?
2020年1月20日 · 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.
MidiInput question - General JUCE discussion - JUCE
2010年9月13日 · 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 …
Read/Write files - Android - JUCE
2022年3月2日 · 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 …
Cuda phase vocoder - Audio Plugins - JUCE
2018年10月10日 · 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