These properties will be useful eventually for my mixer settings, and I just hard-coded default values for now as reminder.
I’ll comment them out for now.
Good idea: I’ll try with one audio file only.
Thanks so much !
These properties will be useful eventually for my mixer settings, and I just hard-coded default values for now as reminder.
I’ll comment them out for now.
Good idea: I’ll try with one audio file only.
Thanks so much !
Dave,
A strange thing…
The following code pops the error “No inputs…”
Would that be a clue to something not right ?
record_arm.setToggleState (should_be_armed, dontSendNotification);
auto inputs = engine.edit_project->getAllInputDevices();
if (inputs.size() == 0)
{
AlertWindow::showMessageBoxAsync (AlertWindow::WarningIcon, "Error", "No input available");
}
It could be… But you really want to check for outputs.
Can you step in to DeviceManager::initialise and then in to DeviceManager::rebuildWaveDeviceList().
Step down to the lastWaveDeviceList->outputs loop and see if any new WaveOutputDevice is getting called.
If that doesn’t get called at all, it means no outputs are being detected from the audio device (but that comes from juce).
Sure thing.
Trying now.