react-native-audio-recorder-player icon indicating copy to clipboard operation
react-native-audio-recorder-player copied to clipboard

Stop and pause player not working

Open parthpanchalTAI opened this issue 4 months ago • 3 comments

const audioRecorderPlayer = new AudioRecorderPlayer();

const onPausePlay = async () => { await audioRecorderPlayer.audioRecorderPlayer.pausePlayer(); };

const onStopPlay = async () => { console.log('onStopPlay'); await audioRecorderPlayer.stopPlayer(); audioRecorderPlayer.removePlayBackListener(); };

This two methods are not working, audio is continuous play on background, in both android and ios

parthpanchalTAI avatar Feb 15 '24 12:02 parthpanchalTAI