Questions tagged [juce]

JUCE is a cross-platform GUI library written in C++. It provides strong cross-platform support of GUI elements and audio, and can also be used to make audio plugins (VST, VST3, AudioUnit, AUv3, RTAS, AAX). JUCE applications can use native audio frameworks on the respective platforms (WASAPI, CoreAudio...) or ASIO. JUCE apps can be built for Windows, Mac OS X, Linux, iOS, and Android.

JUCE is a cross-platform GUI library written in C++. It provides strong cross-platform support of GUI elements and audio, and can also be used to make audio plugins (VST, VST3, AudioUnit, AUv3, RTAS, AAX). JUCE applications can use native audio frameworks on the respective platforms (WASAPI, CoreAudio...) or ASIO. JUCE apps can be built for Windows, Mac OS X, Linux, iOS, and Android.

242 questions
2
votes
0 answers

Encrypting RSA with a 2 part key

I'm writing an audio program in c++ with the juce framework and I'm able to successfully encrypt and decrypt. Juce has a function CreateKeypair: https://docs.juce.com/master/classRSAKey.html In the docs there is suggested code on how to encrypt in…
2
votes
0 answers

Cmake not exporting code because Xcode 1.5 is not supported

Due to hardware limitations, I am trying to create a plugin using the JUCE framework in CLion. But Cmake isn't working, I keep getting this error every time I try to generate build files. I've tried both methods of command line and the Cmake…
2
votes
2 answers

Can I use MAX/MSP code to make an iOS app?

I'm using MAX/MSP for audio signal processing. I want to use the same processing in an iOS app. Can I do that?
Andri
  • 453
  • 4
  • 22
2
votes
1 answer

Loading TensorFlow model to manipulate an audio stream with C++

I want to load a machine learning model created with TensorFlow into my C++ Audio Application made with JUCE6. In order to use TensorFlow inside C++, I am using the TensorFlow wrapper CppFlow. I have the problem, that I don't know how to load the…
Raphael
  • 33
  • 1
  • 6
2
votes
0 answers

How to add JUCE to Android app without GUI/Projuce?

I have an already working audio app for Android that uses Oboe. I found some nice plugins https://github.com/juandagilc/Audio-Effects that I'd like to add to my project. I made JUCE compile successfully on my Android Studio project, but now I'm…
Guerlando OCs
  • 1,886
  • 9
  • 61
  • 150
2
votes
0 answers

Setting the CMake project version AFTER the call to "project"

I am trying to make a Juce plugin using CMake and the Juce CMake functions require that the current project has a version defined for it. The issue is, I don't want to hardcode the version number in CMakeLists.txt. I want to get the version from…
tjwrona1992
  • 8,614
  • 8
  • 35
  • 98
2
votes
2 answers

Lua pattern matching for extracting hard coded strings in code base

I'm working with a C++ code base. Right now I'm using a C++ code calling lua script to look through the entire code base and hopefully return a list of all of the strings which are used in the program. The strings in question are always preceded by…
Colton Phillips
  • 237
  • 1
  • 4
  • 13
2
votes
1 answer

How to compile and run a hello world JUCE program?

I cloned https://github.com/juce-framework/JUCE I first uncommented find_package(JUCE) in /GuiApp' CMakeList.txt. Then I ran cmake .. . -B cmake-build-dir -D JUCE_BUILD_EXAMPLES=ON on the top level directory. It says: -- Checking for modules…
Aquarius_Girl
  • 21,790
  • 65
  • 230
  • 411
2
votes
1 answer

Directory lookup in old C++ code causing a directory error in OS X Catalina 10.15

This is a niche question, I hope you can help me with I have a VERY old project (2010 or so - running on XCODE 3.2) It is written in a combination of C++ and also some programming using the JUCE library for Audio Plugin development - it compiles as…
Bryan Spence
  • 133
  • 1
  • 8
2
votes
0 answers

Show dialogs from JUCE library

I want to develop an iOS/MacOS app which would use Metal for rendering. This is not supported as a “main window” by JUCE (yet). The reason I was to use JUCE is because it unifies acquiring access to audio interfaces, which is quite different between…
akuz
  • 607
  • 7
  • 14
2
votes
2 answers

intercepting mouse events on FileBrowserComponent in Juce library

I recently begin to use Juce library. I usually post Juce related question on its forum, but I'm struggling with an issues from a lot of days, and I received still no answers. So stackoveflow does worth a try even if seems that there aren't a lot of…
Heisenbug
  • 38,762
  • 28
  • 132
  • 190
2
votes
2 answers

Custom Child Components Added But Not Visible

I am using the JUCE framework to create an audio plugin. I have created a Knob class which inherits from the Component class. My Knob class contains references to a Slider & a Label. In my AudioProcessorEditor class, I initialize several Knob…
Collin
  • 53
  • 5
2
votes
1 answer

How can I initialise this class in an array?

I'm trying to make an array of class filePlayerGui and when I try to initialise it in the constructor it won't let me do so class MainComponent : public Component, public…
harry97uk
  • 33
  • 5
2
votes
0 answers

Multioutput routing in AudioKit

I want to develop an iOS application which generates triggers and control signals to control external hardware. For this reason I’m thinking to use the AudioKit framework to generate these signals and to route them towards specific output channels…
fran_f
  • 36
  • 5
2
votes
1 answer

JUCE - Member Function Not Viable: 'this' Argument Has Type const

I'm trying to create a tabbed window by reading from a ValueTree in JUCE. I'm using the below code to set the corresponding tab's root item to a child of the tree (full code available here). However, I get the error: "Member function 'getValueTree'…
Jefferson
  • 421
  • 5
  • 17
1 2
3
16 17