天天看點

iOS、安卓IM語音聊天(AMR編解碼)

1、IOS、安卓IM語音聊天開發初探部分心得——本地音頻處理篇(上)

http://cvito.net/index.php/archives/854

2、IOS、安卓IM語音聊天開發初探部分心得——本地音頻處理篇(下)

http://cvito.net/index.php/archives/869

3、 wav 格式音頻檔案轉碼成 amr 音頻格式(執行個體)

http://code4app.com/ios/邊錄音邊轉碼/521c65d56803fab864000001

4、deleteRecording删除錄制檔案

使用[AVAudioRecorder deleteRecording]删除錄制檔案時,需要先判斷isRecording,否則會出現:message sent to deallocated instance

[self.audioRecorder stop];
    //删除錄制檔案
    if (self.audioRecorder.isRecording) {
        [self.audioRecorder deleteRecording];
    }