Larpoux
Larpoux
Hi KIM I released Flutter Sound 6.1.4 I did some fixes so that we can plug the Recorder sink directly to the Player Stream. I added a small example to...
StreamSink is now `StreamSink` and not any more `StreamSink`. Probably you do not link your example with 6.1.4 but an older version. What is the result of ```sh $ flutter...
If you do not want to work/develop/debug Flutter Sound, you can also replace the following lines in pubspec.yaml : ``` flutter_sound: path: ../ ``` by : ``` flutter_sound: ^6.1.4 ```
oH! 10/15 seconds is very bad. I have a delay of 100 milliseconds or so. There is a problem with your test. Is this a real device ? Android or...
Oh, I see. Let me think about what we can do ...
You can try the following : - Keep the constant 'SAMPLE_RATE` to 44100 - Increase the `sampleRate` parameter to 45500 in function `init()` ```dart const int SAMPLE_RATE = 44100; ......
Added a [new thread](https://github.com/dooboolab/flutter_sound/issues/479) , because your issue (#90) is really very, very old 😆 . I congratulate you for your perseverance 🥇
> @Larpoux I tried doing this way as you suggested, its working fine till 1 minute but after that there is delay as previously. OK, i put your problem somewhere...
> @Larpoux Can we only take voice from device mic instead headset mic? currently its taking audio from device as well as headset mic, i wanted to stop from headset...
Instead of feeding the `Flutter Player Stream` with the `Flutter Recorder Sink` you can try : - Listen to the Recorder Stream - For each packet received: , - Test...