Make AVAudioPlayer play a music file through phone call (ear) speaker

前端 未结 1 1812
暗喜
暗喜 2021-01-28 04:30

I want to play a music file through ear speaker,

What I am doing now is:

In viewDidLoad method ::::

[[AVAudioSession sharedIns         


        
相关标签:
1条回答
  • 2021-01-28 04:50

    You need to change the category of AVAudioSession like this:

    [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
    

    Find more details in Audio Session Programming Guide:

    You can programmatically influence the audio output route. When using the AVAudioSessionCategoryPlayAndRecord category, audio normally goes to the receiver (the small speaker you hold to your ear when on a phone call).

    0 讨论(0)
提交回复
热议问题