(Null-Safe + V2) Audio Record Plugin that supports record, pause, resume, stop, and provide access to audio level metering properties average power peak power.
When I record a phone call I can't hear the conversation between the users in that audio file
Android
version: 11
if use the another_audio_recorder package in the usual way( without recording a call) it works fine I can hear the recorded content in the audio file when I try to record a call during that time of the call I can't hear anything in the recorded file but the recording process Is Working
Code of recording function
_start() async {
print("recording");
try {
await _recorder?.start();
var recording = await _recorder?.current(channel: 0);
setState(() {
});
another_audio_recorder: ^1.0.1
When I record a phone call I can't hear the conversation between the users in that audio file
Android version: 11
if use the another_audio_recorder package in the usual way( without recording a call) it works fine I can hear the recorded content in the audio file when I try to record a call during that time of the call I can't hear anything in the recorded file but the recording process Is Working
Code of recording function _start() async { print("recording"); try { await _recorder?.start(); var recording = await _recorder?.current(channel: 0); setState(() { });
}