工作生活

AudioRecord api的认知

2019-07-01  本文已影响0人  花花是男神
相比AudioTrack作用播音,AudioRecord的作用就是用来录音的。api也简单易懂,使用过程中根据自身需求获取相应录音通道的PCM音频数据。

1、用AudioRecord录制(read方法)下来直接保存在文件中的音频是PCM音频,也就是源音频,播放器没办法直接播放,需要转换为某一格式的音频。例如转为wave格式即可(在源文件前加44个字节来描述该音频------采样率、通道数、位宽等)。
2、AudioRecord没有暂停和继续录音的方法,只有start和stop。

adts头 ------ 7个字节

wave header ------44个字节

AudioRecord初始化
  1. audioSource:音频来源(mic);
  2. sampleRateInHz:采样率(16KHz 、44.1KHz)
  3. channelConfig:录音通道数
  4. audioFormat:位宽
  5. bufferSizeInBytes:缓冲区大小(AudioRecord.getMinBufferSize()可以拿到)
  1. sampleRateInHz:采样率(16KHz 、44.1KHz)
  2. channelConfig:录音通道数
  3. audioFormat:位宽
AudioRecord方法

audioParamCheck(int audioSource, int sampleRateInHz,
int channelConfig, int audioFormat):
检查以下参数,无问题则设置。有问题抛出异常。

  1. mRecordSource is valid
  2. mChannelCount is valid
  3. mChannelMask is valid
  4. mAudioFormat is valid
  5. mSampleRate is valid

接口定义为:当AudioRecord 收到一个由setNotificationMarkerPosition(int)设置的通知标志,或由 setPositionNotificationPeriod(int)设置的周期更新记录的进度状态时,回调此接口。

public interface OnRecordPositionUpdateListener  {
    /**
     * Called on the listener to notify it that the previously set marker has been reached
     * by the recording head.回调监听器,通知监听器已经到达之前设置的标记位置。
     */
    void onMarkerReached(AudioRecord recorder);

    /**
     * Called on the listener to periodically notify it that the record head has reached
     * a multiple of the notification period.按照一定的周期,通知监听器,指定的记录已经就绪。
     */
       void onPeriodicNotification(AudioRecord recorder);
}
上一篇下一篇

猜你喜欢

热点阅读