0

I'm trying to record an audio with React Native expo-av but for some reason, the audio is coming out like if I was in a call. How can I solve this problem?

Roberto Yorio
  • 89
  • 2
  • 9

1 Answers1

5

Try adding the following to the function that handles recording playback, before (I'm assuming) you load the sound. E.g:

await Audio.setAudioModeAsync({
  allowsRecordingIOS: false,

});

Source: https://forums.expo.io/t/try-to-use-expo-audio-ios-play-with-receiver-but-not-speaker/699/13

user15165431
  • 66
  • 1
  • 1