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?
Asked
Active
Viewed 1,409 times
1 Answers
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
-
One year later, and it saved me! :P – Lucas L. Mar 25 '22 at 17:47