ios AudioUnit bluetooth 录音 播放 实现

ios AudioUnit bluetooth 录音 播放 实现


因为拍摄短视频的时候有时候手机离主人比较远的时候,这样录音效果就不好了, 为了方便记录声音,则最好的方式就是使用蓝牙耳机,但是ios关于蓝牙耳机的使用特别少,以下是我总结的内容。

#import "XYRecorder.h"
#import <AVFoundation/AVFoundation.h>

#define INPUT_BUS 1
#define OUTPUT_BUS 0

AudioUnit audioUnit;
AudioBufferList *buffList;

@implementation XYRecorder

#pragma mark - init

- (instancetype)init {
    self = [super init];
    
    if (self) {
        AudioUnitInitialize(audioUnit);
        [self initRemoteIO];
    }
    
    return self;
}

- (void)initRemoteIO {
    [self initAudioSession];
    
    [self initBuffer];
    
    [self initAudioComponent];
    
    [self initFormat];
    
    [self initAudioProperty];
    
    [self initRecordeCallback];
    
    [self initPlayCallback];
}

- (void)initAudioSession {
    NSError *error;
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    
    [audioSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionAllowBluetooth error:&error];
    [audioSession setPreferredSampleRate:44100 error:&error];
    [audioSession se
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
实现 iOS AudioUnit 录音分贝检测,可以参考以下步骤: 1. 配置音频会话 在使用 AudioUnit 之前,需要先配置音频会话。可以设置为录音模式,同时指定要使用的音频输入设备。 ```objc AVAudioSession *audioSession = [AVAudioSession sharedInstance]; NSError *error; [audioSession setCategory:AVAudioSessionCategoryRecord error:&error]; [audioSession setPreferredSampleRate:44100.0 error:&error]; [audioSession setPreferredIOBufferDuration:0.005 error:&error]; [audioSession setActive:YES error:&error]; ``` 2. 创建 AudioUnit 使用 `AudioComponentFindNext` 函数来查找可用的音频组件,并使用 `AudioComponentInstanceNew` 函数创建 AudioUnit 实例。 ```objc AudioComponentDescription desc; desc.componentType = kAudioUnitType_Output; desc.componentSubType = kAudioUnitSubType_RemoteIO; desc.componentManufacturer = kAudioUnitManufacturer_Apple; desc.componentFlags = 0; desc.componentFlagsMask = 0; AudioComponent inputComponent = AudioComponentFindNext(NULL, &desc); AudioComponentInstanceNew(inputComponent, &_audioUnit); ``` 3. 配置 AudioUnit 设置 AudioUnit 的音频格式和 IO 属性,并启用录音和回放功能。 ```objc // 设置音频输入格式 AudioStreamBasicDescription audioFormat; audioFormat.mSampleRate = 44100.0; audioFormat.mFormatID = kAudioFormatLinearPCM; audioFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked; audioFormat.mFramesPerPacket = 1; audioFormat.mChannelsPerFrame = 1; audioFormat.mBitsPerChannel = 16; audioFormat.mBytesPerPacket = 2; audioFormat.mBytesPerFrame = 2; // 设置 AudioUnit 输入流 IO 属性 AudioUnitSetProperty(_audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input, 0, &audioFormat, sizeof(audioFormat)); UInt32 enable = 1; AudioUnitSetProperty(_audioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &enable, sizeof(enable)); // 设置 AudioUnit 输出流 IO 属性 AudioUnitSetProperty(_audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output, 1, &audioFormat, sizeof(audioFormat)); AudioUnitSetProperty(_audioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Output, 0, &enable, sizeof(enable)); // 启用录音和回放功能 AURenderCallbackStruct input; input.inputProc = recordingCallback; input.inputProcRefCon = (__bridge void *)(self); AudioUnitSetProperty(_audioUnit, kAudioOutputUnitProperty_SetInputCallback, kAudioUnitScope_Global, 0, &input, sizeof(input)); AudioUnitSetProperty(_audioUnit, kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Global, 0, &input, sizeof(input)); ``` 4. 实现录音回调函数 在录音回调函数中,可以获取录音数据的分贝值,用来检测录音音量大小。 ```objc static OSStatus recordingCallback(void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData) { AudioUnitRender(AudioUnitRecorder.audioUnit, ioActionFlags, inTimeStamp, 1, inNumberFrames, ioData); float decibels = 0.0; if (ioData->mNumberBuffers > 0) { AudioBuffer buffer = ioData->mBuffers[0]; // 计算分贝值 int channels = buffer.mNumberChannels; float peak = 0; for (int i = 0; i < inNumberFrames * channels; i++) { SInt16 sample = ((SInt16 *)buffer.mData)[i]; float sampleValue = sample / 32768.0; if (sampleValue < 0) { sampleValue = -sampleValue; } if (sampleValue > peak) { peak = sampleValue; } } decibels = 20.0 * log10(peak); } NSLog(@"Decibels: %f", decibels); return noErr; } ``` 5. 启动 AudioUnit 启动 AudioUnit,开始录音。 ```objc AudioUnitInitialize(_audioUnit); AudioOutputUnitStart(_audioUnit); ``` 通过以上步骤,就可以实现 iOS AudioUnit 录音分贝检测。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值