Hello,
I want to record microphone input and send it to a programmer instrument. So far I managed to get the input and send it in the actual programmer instrument BUT the sound cuts off when the programmer event reaches its end.
Looping the programmer event seems to call CREATE_PROGRAMMER_SOUND and DESTROY_PROGRAMMER_SOUND every loop iteration, which seem to stop the event momentarily causing stuttering.
Am I doing something wrong ? What is the proper way to send microphone input through a FMOD event ?
What you will have to do is set the programmer instrument to async and looping and use a sustain point or loop (inside the instrument region). This will stop the instrument from being destroyed, but then you will need to make sure to clean up the event as it wonât end or release naturally.
Hi. This is exactly what I am trying to do, without success. I was wondering if you could answer some questions for me.
In this code, the callback function is set for a particular event instance, but as I understand, the named programmer instrument in FMOD already generates callback functions. I am getting the error â[FMOD] EventInstance::createProgrammerSoundImpl : Programmer sound callback for instrument âplayRecordingâ returned no sound.â How can I assign the recorded sound to the callback function for this programmer instrument without generating an instance of the event in the code? In general, I am confused about whether it is the event that sends the callback or the programmer instrument.
Also, I see that you have named your sound ârecordâ. Does this correspond to the name of the programmer instrument in FMOD? If not, where do you set the name of the programmer instrument in FMOD that this callback function corresponds to?
My goal is to record sound from the microphone, and then later trigger an event with a programmer instrument that plays back that sound through the routing and effects chains I have set up in my FMOD session. So far I have succeeded in recording and playing back sound with triggers in a Unity script, but I ideally would like to integrate the playback with FMOD for greater control using programmer instruments.
Thank you in advance for any help you can provide!
When you create and play an Event you will also need to assign the callback function for that event, when the callback function is called it is called from an existing Event instance. You can then access the instance and modify/control it from there.
You donât set a name for the programmer instrument in an Event, you set a callback for the Event and then you can check what is causing the callback from the function. ie. if you have multiple programmer sounds in a single event, they will all trigger the same callback function but you can determine when instrument has triggered it from the FMOD_STUDIO_PROGRAMMER_SOUND_PROPERTIES.
I know this is an old thread, but I was wondering if you could share your full script in terms of how to record into programmer instrument? I am having trouble understanding how to combine the recording scripts and programmer instrument script when it comes to that part. Am I recording into an FMOD Sound, which is then stored into the StreamingAssets folder, which is then being called by the programmer instrument?