Subrata
Subrata

Reputation: 61

iOS - is possible to record audio from Bluetooth headset mic and play in device speaker

I am trying to record audio by Bluetooth headset mic and play by device speaker. I have seen few stack-overflow post regrading the same but still i am not getting is this possible or not ? and if possible then how to do it? if someone have any idea please inform me.

Upvotes: 4

Views: 953

Answers (1)

Jonghee Park
Jonghee Park

Reputation: 1275

It's possible. Use bluetooth option when setting audio session category.

let audioSession = AVAudioSession.sharedInstance()
_ = try? audioSession.setCategory(AVAudioSessionCategoryPlayAndRecord, with: .allowBluetooth)
_ = try? audioSession.setActive(true)

Upvotes: 1

Related Questions