I am using the link mentioned below to record audio through my iPhone app:
How do I record audio on iPhone with AVAudioRecorder?
When I try to play my recordings using AVAudioPlayer on my device, I have seen that the sound volume of my recordings is very low even when my device volume is full.
Recording is working fine.
What can be done to increase the 开发者_JAVA百科volume?
When recording audio, set the audio session to AVAudioSessionCategoryPlayAndRecord
or just AVAudioSessionCategoryRecord
. When you're done, set it back to just AVAudioSessionCategoryPlayback
.
Solution for iOS 12 + Swift 5.0:
When starting recording use:
recordingSession.setCategory(.record)
// recordingSession is of type AVAudioSessionWhen playing the record audio use:
recordingSession.setCategory(.playback)
Note: Place the statements into a do-catch block.
you can try AVaudioSession.sharedInstance().overrideOutputAudioPort(AVAudioSessionPortOverride.Speaker)
this is because your output device set to inbuilt speaker in iPhone.
while iTab have only speaker so no problem occurs.
精彩评论