Sasha071201
Sasha071201
Hi, I have tested the new functionalities and encountered several issues: **Microphone remains active after stopping the recorder** With the following code: ``` final FlutterSoundRecorder _recorder = FlutterSoundRecorder(logLevel: Level.debug); ......
> Is your issue on flutter web? Yes. I tested it on the web
> Do you experience a high latency (the delay between something is recorded by the microphone and the time the data ar provided to the app) ? Yes, I do...
I don't start them simultaneously. I wait for the recorder to start first, and then I start the player.
Hi, It seems that someone has already implemented a noise cancellation solution. You can check out the details here: https://github.com/Canardoux/flutter_sound/issues/1134. Unfortunately, I am currently unable to test on Android, and...
I’ve decided to forgo using flutter_sound for now, because I was able to implement everything myself using native code.
@Mastermind-sap Here are some concise, authoritative resources that cover exactly what I implemented: 1. **Android AudioRecord & AudioTrack (official docs)** • AudioRecord: https://developer.android.com/reference/android/media/AudioRecord • AudioTrack: https://developer.android.com/reference/android/media/AudioTrack 2. **AcousticEchoCanceler** • https://developer.android.com/reference/android/media/audiofx/AcousticEchoCanceler...
I don’t plan to invest the time and effort needed to do that. I’ll wait for this functionality to be supported))