為了達(dá)到 iOS 與 Android 實現(xiàn)音頻互通. 那么Mp3格式的音頻文件再好不過了.這里主要用到lame,非常棒的Mp3音頻編碼器.
首先使用 AVAudioRecorder 進(jìn)行音頻錄制之前,進(jìn)行如下參數(shù)設(shè)置:(一定要設(shè)置成pcm線性編碼格式)
// 定義音頻的編碼參數(shù), 決定錄制音頻文件的格式, 音質(zhì), 容量大小等, 建議采用AAC的編碼方式
let recordSettings = [AVSampleRateKey: NSNumber(value: Float(44100.0)), // 聲音采樣率
AVFormatIDKey: NSNumber(value: kAudioFormatLinearPCM), // 編碼格式
AVNumberOfChannelsKey: NSNumber(value: 2), //采集音軌
AVEncoderAudioQualityKey: NSNumber(value: Int32(AVAudioQuality.medium.rawValue)), // 音頻質(zhì)量
AVLinearPCMBitDepthKey: NSNumber(value: 16),
AVLinearPCMIsFloatKey: NSNumber(value: false),
AVLinearPCMIsBigEndianKey: NSNumber(value: false)]
轉(zhuǎn)換成MP3后文件會變小一點,但音質(zhì)的完整和流暢并不受影響.
下面介紹 lame 靜態(tài)庫主要有兩個核心文件:
1:lame庫加入工程中
2:核心轉(zhuǎn)換代碼(這里的代碼直接引用oc的)
- (void)audio_PCMtoMP3
{
NSString *mp3FileName = [self.audioFileSavePath lastPathComponent];
mp3FileName = [mp3FileName stringByAppendingString:@".mp3"];
NSString *mp3FilePath = [self.audioTemporarySavePath stringByAppendingPathComponent:mp3FileName];
@try {
int read, write;
FILEFILE *pcm = fopen([self.audioFileSavePath cStringUsingEncoding:1], "rb"); //source 被轉(zhuǎn)換的音頻文件位置
fseek(pcm, 4*1024, SEEK_CUR); //skip file header
FILEFILE *mp3 = fopen([mp3FilePath cStringUsingEncoding:1], "wb"); //output 輸出生成的Mp3文件位置
const int PCM_SIZE = 8192;
const int MP3_SIZE = 8192;
short int pcm_buffer[PCM_SIZE*2];
unsigned char mp3_buffer[MP3_SIZE];
lame_t lame = lame_init();
lame_set_in_samplerate(lame, 11025.0);
lame_set_VBR(lame, vbr_default);
lame_init_params(lame);
do {
read = fread(pcm_buffer, 2*sizeof(short int), PCM_SIZE, pcm);
if (read == 0)
write = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
else
write = lame_encode_buffer_interleaved(lame, pcm_buffer, read, mp3_buffer, MP3_SIZE);
fwrite(mp3_buffer, write, 1, mp3);
} while (read != 0);
lame_close(lame);
fclose(mp3);
fclose(pcm);
}
@catch (NSException *exception) {
NSLog(@"%@",[exception description]);
}
@finally {
self.audioFileSavePath = mp3FilePath;
NSLog(@"MP3生成成功: %@",self.audioFileSavePath);
}
如果沒有意外,轉(zhuǎn)換成功后將直接進(jìn)到 @finally 代碼塊中.
模擬器在錄制音頻的時候,偶爾會產(chǎn)生雜音,那么轉(zhuǎn)換后的mp3 也會附帶雜音,不知道為什么,目前在真機(jī)還沒有遇到過.
文件后綴也可以決定所生成的錄制音頻的格式 例如:.wav .caf,也可以將.caf格式文件轉(zhuǎn)為MP3
lame靜態(tài)庫(支持64架構(gòu),github官方上下載的lame是32位) https://pan.baidu.com/s/1dFHtTk9 提取碼: smiw
demo地址:https://github.com/songhaisheng/SGRecorder