从无线耳机录制音频并通过蓝牙扬声器播放

Record Audio From wireless Headset and Play it Through Bluetooth speaker

从 BT 耳机录制音频。录制完成后,切换路由,通过无线蓝牙音箱播放。

我已经实现了,但是音频正在同一耳机中录制和播放,或者 speaker.how 反之亦然录制和播放?任何解决方案。 提前致谢

AVAudioSession 可用于设置会话的默认输出端口。

首先要做的是设置类别AVAudioSession。这里有几个选项,因为我们希望能够播放和录制声音。

AVAudioSessionCategoryPlayAndRecord — 播放和录制。输入和输出不必同时发生,但如果需要可以同时发生。用于音频聊天应用程序。

AVAudioSessionCategoryMultiRoute — 播放和录制。允许同时输入和输出不同的音频流,例如 USB 和 headphone 输出。 DJ 应用程序将受益于使用多路由类别。 DJ 经常需要在播放一首音乐的同时聆听另一首音乐。使用多路由类别,DJ 应用程序可以在为舞者播放当前曲目时通过头phone 播放未来的曲目。

在这种情况下,看起来 AVAudioSessionCategoryPlayAndRecord 比较合适。像这样设置:

NSError *setCategoryError = nil;
BOOL success = [[AVAudioSession sharedInstance]
                setCategory: AVAudioSessionCategoryPlayAndRecord
                      error: &setCategoryError];

if (!success) { /* handle the error in setCategoryError */ }

苹果建议设置一次类别,然后根据需要修改输入路由。

将类别设置为 AVAudioSessionCategoryPlayAndRecord 后,下面的行将 return 可用输入和输出路由列表。

NSArray <AVAudioSessionPortDescription *> *availableInputs = [AVAudioSession sharedInstance].availableInputs;

在 OP 中,此端口将用于录制。

AVAudioSessionPortBluetoothHFP - 支持 Hands-Free 配置文件 (HFP) 的蓝牙设备。

这样设置:

[[AVAudioSession sharedInstance] setPreferredInput:AVAudioSessionPortBluetoothHFP error: &error];

录制完成后,可以选择 availableInputs 列表中的另一台设备进行播放。最有可能的是,BT 扬声器的播放端口是 AVAudioSessionPortBluetoothA2DP,但 here is a comprehensive list of all playback ports.

这样设置:

[[AVAudioSession sharedInstance] setPreferredInput:AVAudioSessionPortBluetoothA2DP error: &error];

现在应该可以通过 BT 扬声器播放声音了。

请务必注意,[[AVAudioSession sharedInstance] overrideOutputAudioPort:AVAudioSessionPortOverrideSpeaker error:&error]; 将恢复为 phone 的内置扬声器,而不是 BT 扬声器。

请使用AVAudioSession方法。

- (BOOL)setCategory:(NSString *)category 
        withOptions:(AVAudioSessionCategoryOptions)options 
              error:(NSError **)outError 
并设置以下 类别作为 AVAudioSession类别PlayAndRecord 或 AVAudioSessionCategoryRecord

选项作为 AVAudioSessionCategoryOptionAllowBluetooth

记住它可能仅适用于 A2DP 蓝牙。 然后试试这个 AVAudioSessionCategoryOptionAllowBluetooth

为了接收蓝牙配件事件,您必须在视图控制器中编写以下代码:

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];

[self becomeFirstResponder];

然后我认为将音频会话类别设置为 MultiRoute 可以允许路由音频 separately.Whereas 我早些时候在 iOS7 中尝试过这样做。似乎每次您更改输入或输出时,iOS 都会更改音频设备 altogether.I 我不确定新版本是否也可以。 但是,您可以使用以下代码获取所有当前可用输入的列表:

// portDesc.portType could be for example - BluetoothHFP, MicrophoneBuiltIn, MicrophoneWired
NSArray *availInputs = [[AVAudioSession sharedInstance] availableInputs];
int count = [availInputs count];
for (int k = 0; k < count; k++) {
    AVAudioSessionPortDescription *portDesc = [availInputs objectAtIndex:k];
    NSLog(@"input%i port type %@", k+1, portDesc.portType);
    NSLog(@"input%i port name %@", k+1, portDesc.portName);
}

并输出为:

AVAudioSession *session = [AVAudioSession sharedInstance];
NSLog(@"Outputs: %@", [[session currentRoute] outputs]);

祝你好运!!

嘿@Rushi 我认为这段代码将帮助你播放音频 viseversa

    -(IBAction)RecordButtonPlayed:(id)sender
{
    if(player.playing)
    {
        [player stop];
    }

    if (!recorder.recording)
    {
        [[AVAudioSession sharedInstance] setActive:YES error:NULL];
        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryRecord withOptions:AVAudioSessionCategoryOptionAllowBluetooth error:NULL];

         [_btnRecord setImage:[UIImage imageNamed:@"player-stop-outline-512.png"] forState:UIControlStateNormal];
        [recorder record];
    }

    else
    {
         [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:NULL];

         [_btnRecord setImage:[UIImage imageNamed:@"171.png"] forState:UIControlStateNormal];
         [recorder stop];

    }
}