Hi there!
I’m actually developing a tool on Android and I wan’t to capture the Microphone on Android devices. My problem is, that FMOD can’t see any Input devices.
I’m developing in C# & Mono.
result = this.system.getRecordNumDrivers(out this.recordingSources);
ERRCHECK(result);
I always get zero drivers back to this.recordingSources. It actually works fine on Windows, I just can’t get any sources on Android. I also gave access to the microphone in the Manifest.xml file:
<uses-feature android:name="android.hardware.microphone" android:required="true" />
I also don’t get any error message from the Android device via logcat.
Any ideas?
BTW: the rest is working fine with FMOD. I can play mp3 files and use FFT via DSP etc.
Cheers
Goran