iOS 音频采集

采集方式

  • 音频采集可以参考上次的视频采集方式,在里面添加相应的音频采集即可,只不过可定制型不强。(视频采集)
  • 使用audioUnit,可定制型强,本文主要介绍这种方式。

实现方式

详细介绍参考(iOS 音频AudioComponentDescription类型设置

 AudioComponentDescription acd;
    acd.componentType = kAudioUnitType_Output;//类型输出
    //acd.componentSubType = kAudioUnitSubType_VoiceProcessingIO;//
    acd.componentSubType = kAudioUnitSubType_RemoteIO;//
    acd.componentManufacturer = kAudioUnitManufacturer_Apple;//ios固定这么写,mac不同
    acd.componentFlags = 0;
    acd.componentFlagsMask = 0;
    //用来描述音频组件
    AudioComponent component = AudioComponentFindNext(NULL, &acd);
    
    //用来表示特定音频组件的实例
    AudioComponentInstance componetInstance;
    OSStatus status = noErr;
    //创建实例
    status = AudioComponentInstanceNew(component, &componetInstance);
    
    UInt32 flagOne = 1;
    //打开IO,1 是麦克风,0 是扬声器
    AudioUnitSetProperty(componetInstance, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &flagOne, sizeof(flagOne));

设置输出音频属性

    AudioStreamBasicDescription desc = {0};
    desc.mSampleRate = 44100;//采样率
    desc.mFormatID = kAudioFormatLinearPCM;//类型交错存储PCM
    desc.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsPacked;
    desc.mChannelsPerFrame = 2;//声道数
    desc.mFramesPerPacket = 1;// 非压缩数据,固定填1
    desc.mBitsPerChannel = 16;//每声道占的位数
    desc.mBytesPerFrame = desc.mBitsPerChannel / 8 * desc.mChannelsPerFrame;
    desc.mBytesPerPacket = desc.mBytesPerFrame * desc.mFramesPerPacket;

设置采集回调

    AURenderCallbackStruct cb;//采集回调
    cb.inputProcRefCon = (__bridge  void *)(self);
    cb.inputProc = handleInputBuffer;
    status = AudioUnitSetProperty(componetInstance, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output, 1, &desc, sizeof(desc));//设置流格式
    status = AudioUnitSetProperty(componetInstance, kAudioOutputUnitProperty_SetInputCallback, kAudioUnitScope_Global, 1, &cb, sizeof(cb));//设置回调

初始化

  AVAudioSession *session = [AVAudioSession sharedInstance];

    NSError *error;
    //设置采样率
    [session setPreferredSampleRate:44100 error:&error];
    
    //设置类型
    [session setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers error:&error];
    
    //
    [session setActive:YES withOptions:kAudioSessionSetActiveFlag_NotifyOthersOnDeactivation error:&error];
    [session setActive:YES error:&error];
    
    //创建一个线程
    taskQueue = dispatch_queue_create("com.mt.audioCapture", NULL);

开始采集

- (void)startRecord{
    dispatch_async(taskQueue, ^{
        NSLog(@"开始录音");
        //每次设置一下状态,防止别的地方被修改或者出现其他情况
        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers error:nil];
        AudioOutputUnitStart(self->componetInstance);
    });
}

结束采集

- (void)endRecord{
    dispatch_async(taskQueue, ^{
        NSLog(@"停止录音");
        AudioOutputUnitStop(self->componetInstance);
    });
}

采集的回调,数据获取

static OSStatus handleInputBuffer(void *inRefCon,
                                  AudioUnitRenderActionFlags *ioActionFlags,
                                  const AudioTimeStamp *inTimeStamp,
                                  UInt32 inBusNumber,
                                  UInt32 inNumberFrames,
                                  AudioBufferList *ioData) {
    @autoreleasepool {
        Test *source = (__bridge Test *)inRefCon;
        
        if (!source) {
            return -1;
        }
        
        AudioBuffer buffer;
        buffer.mData = NULL;
        buffer.mDataByteSize = 0;
        buffer.mNumberChannels = 1;
        
        AudioBufferList bufferList;
        bufferList.mNumberBuffers = 1;
        bufferList.mBuffers[0] = buffer;
        
        static int64_t get_audio_base_timesss = 0;
        Float64 currentTime = CMTimeGetSeconds(CMClockMakeHostTimeFromSystemUnits(inTimeStamp->mHostTime));
        if (get_audio_base_timesss == 0) {
            get_audio_base_timesss = currentTime;
        }
        int64_t pts = (int64_t)((currentTime - get_audio_base_timesss) * 1000);
        
        ///获取数据
        OSStatus status = AudioUnitRender(source->componetInstance,
                                          ioActionFlags,
                                          inTimeStamp,
                                          inBusNumber,
                                          inNumberFrames,
                                          &bufferList);
        
        if ((NO)/*静音*/) {
            for (int i = 0; i < bufferList.mNumberBuffers; i++) {
                AudioBuffer ab = bufferList.mBuffers[i];
                memset(ab.mData, 0, ab.mDataByteSize);
            }
        }
        
        if (status == noErr) {
            //            //音频数据
            //            bufferList.mBuffers[0].mData
            //            //音频长度
            //            bufferList.mBuffers[0].mDataByteSize
            //            //pts
            //            pts
            //            //转为NSData
            //            [NSData dataWithBytes:bufferList.mBuffers[0].mData length:bufferList.mBuffers[0].mDataByteSize]
        }
        /*如果有分离左右声道需求的话
         //            NSData *data = [NSData dataWithBytes:buffers.mBuffers[0].mData length:buffers.mBuffers[0].mDataByteSize];
         //
         //               NSMutableData *leftData = [NSMutableData dataWithCapacity:0];
         //               NSMutableData *rightData = [NSMutableData dataWithCapacity:0];
         //            // 分离左右声道
         //             for (int i = 0; i < data.length; i+=4) {
         //                 [leftData appendData:[data subdataWithRange:NSMakeRange(i, 2)]];
         //                 [rightData appendData:[data subdataWithRange:NSMakeRange(i+2, 2)]];
         //             }
         */
        return noErr;
    }
}

Demo地址整理后奉上。
有其他不明白的,可以留言,看到就会回复。
如果喜欢,请帮忙点赞。支持转载,转载请附原文链接。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,540评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,640评论 2 374
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,643评论 0 326
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,672评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,525评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,387评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,809评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,450评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,743评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,787评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,560评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,406评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,824评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,048评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,335评论 1 253
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,784评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,997评论 2 337

推荐阅读更多精彩内容