cph-cachet / flutter-plugins

A collection of Flutter plugins developed by CACHET
527 stars 625 forks source link

[audio_streamer]: not able to record audio on ios 17.2 simulator #905

Open jtdLab opened 4 months ago

jtdLab commented 4 months ago

Remember to specify the plugin name in the title!

Device / Emulator and OS

Describe the bug

The audio stream of [0,0,0,0,...] is returned when start recording. Permissions are granted.

To Reproduce

final audioStreamer = AudioStreamer();
audioStreamer.sampleRate = 16000;
audioStreamer.audioStream.listen((e){
  // [0,0,0,0,...] here
});