Multichannel Audio-Input

Hi,

for a research-projekt I’m seeking for a solution to get multichannel input from a (virtual) audio interface into unity. Would be fmod a solution to this? When yes - how?

Thanks in advance and best regards

If the device shows up as a recording device then you should be able to use System::GetRecordDriverInfo and System::RecordStart.
https://fmod.com/resources/documentation-api?page=content/generated/FMOD_System_GetRecordDriverInfo.html#/
https://fmod.com/resources/documentation-api?page=content/generated/FMOD_System_RecordStart.html#/

We also have some recording examples in our LowLevel and Studio API’s that would be very similar, only in C++ rather than C#.

Hey,
I am in a similar situation. Does this only work in Unity or also in Unreal? How do I actually implement this then. (Not a programmer) rather sound designer).

Best

These examples won’t immediately work in Unreal, as they are written in C# and Unreal uses C++. Although we do have similar examples included in our FMOD Engine download which are written in C++.

Hm, ok since I am not a programmer and run a built by myself e.g. the engine. How is there an easy way of getting a my hands in these examples?

Best and thanks for the reply.

If you can find the ‘record.cpp’ file in the FMOD Engine examples, that will contain the information your need to get recording in FMOD but you will still need to do some coding to get it working in your Unreal project.