使用OpenSL ES替换默认MIC(Android中的原生音频)

时间:2015-12-01 17:00:08

标签: android audio java-native-interface opensl

我是使用OpenSL ES的Android Native音频的新手,我需要你的帮助。

现在我想编写一个应用程序来进行实时录制和播放。在录制部分,我们必须在创建录音机时首先配置音频源。像这样。

SLDataLocator_IODevice loc_dev = {SL_DATALOCATOR_IODEVICE,SL_IODEVICE_AUDIOINPUT,SL_DEFAULTDEVICEID_AUDIOINPUT, NULL};
SLDataSource audioSrc = {&loc_dev, NULL};

SL_DEFAULTDEVICEID_AUDIOINPUT是默认麦克风的地址。我想在Android手机上使用其他MIC(我使用的是具有三种不同MIC的Nexus 6),但是我找不到其他的MIC'地址。

感谢任何回应!

1 个答案:

答案 0 :(得分:1)

OpenSLES.h我们得到了一些类型的IODevices ..

/** IODevice-types */
#define SL_IODEVICE_AUDIOINPUT  ((SLuint32) 0x00000001)
#define SL_IODEVICE_LEDARRAY    ((SLuint32) 0x00000002)
#define SL_IODEVICE_VIBRA       ((SLuint32) 0x00000003)
#define SL_IODEVICE_RESERVED4   ((SLuint32) 0x00000004)
#define SL_IODEVICE_RESERVED5   ((SLuint32) 0x00000005)

您可以尝试其中每一项来检查这些是否满足您的需求。

您还可以查看OpenSLES_AndroidConfiguration.h。在初始化AudioRecorder时,您可以在此处设置一些Android配置来设置输入类型。

/*---------------------------------------------------------------------------*/
/* Android AudioRecorder configuration                                       */
/*---------------------------------------------------------------------------*/

/** Audio recording preset */
/** Audio recording preset key */
#define SL_ANDROID_KEY_RECORDING_PRESET ((const SLchar*) "androidRecordingPreset")
/** Audio recording preset values */
/**   preset "none" cannot be set, it is used to indicate the current settings
 *     do not match any of the presets. */
#define SL_ANDROID_RECORDING_PRESET_NONE                ((SLuint32) 0x00000000)
/**   generic recording configuration on the platform */
#define SL_ANDROID_RECORDING_PRESET_GENERIC             ((SLuint32) 0x00000001)
/**   uses the microphone audio source with the same orientation as the camera
 *     if available, the main device microphone otherwise */
#define SL_ANDROID_RECORDING_PRESET_CAMCORDER           ((SLuint32) 0x00000002)
/**   uses the main microphone tuned for voice recognition */
#define SL_ANDROID_RECORDING_PRESET_VOICE_RECOGNITION   ((SLuint32) 0x00000003)
/**   uses the main microphone tuned for audio communications */
#define SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION ((SLuint32) 0x00000004)

这些主要用于反复试验。我没有任何确切的解决方案。