FULL or LITE flavor ? FULL
Important: Result of the command : flutter pub deps | grep flutter_sound

Crash ? It crashes every time I try to initialize player or recorder. In the console is being triggered the follow messages:
Describe the bug
It is failing at registering the plugin for ios, it gets the follow messages in console:
ERROR during registerWithRegistrar: flutterSoundPlayerManager != nil
ERROR during registerWithRegistrar: flutterSoundRecorderManager != nil
(This is very important. Most of the time we cannot do anything if we do not have information on your bug)
At the beginning it throws the follow messages:
When I try to initialize the recorder or player it throws:
I am getting the same logs:
flutter: FS:---> openAudioSession
flutter: ---> openAudioSession
flutter: Resetting flutter_sound Recorder Plugin
@resetPlugin
iOS: ---> resetPlugin
iOS: <--- resetPlugin
As soon as it hits the line
await _mRecorder.openAudioSession();
I followed the simple_recorder.dart example in ^7.7.0.
I am facing the same error in our project, any help @jordygarcias
Hi same error here, and it crashes.
Not always though.
I have an app that can play audio with the use of just_audio_plugin and audio_service plugin.
I use flutter_sound for recording.
If I launch my app, and directly start recording no problem at all.
But if I play any audio before I start recording (wether I stop the audio or not prior to recording doesn't change anything), then it crashes.
I'm using flutter_sound_lite last version (8.1.1).
Some more information:
it seems to be linked to just_audio.
Each time I play an audio with just_audio I get these messages in the console:
ERROR during registerWithRegistrar: flutterSoundPlayerManager != nil
ERROR during registerWithRegistrar: flutterSoundRecorderManager != nil
The audio plays fine though, but after that when I try to record, when I call openAudioSession, it crashes.
I tried to replace just_audio_plugin with flutter_sound for playing sound and avoid this conflict but just_audio_plugin has many features that are not part of flutter_sound, and that I need.
The main problem is that when I try to play an audio from internet, the latency before I can hear a sound is important. It seems that flutter_sound is downloading the entire file before playing it.
With just_audio, the file is buffered and can be played during its download. For big files (2 hours podcast for instance) it means that we can listen to the audio a few seconds after clicking play, while with flutter_sound we may wait for a long time.
Another problem is that flutter_sound doesn't support changing the playback speed.
Flutter Sound 8.1.4 is released and integrates a Pull Request kindly provided by @touficzayed .
Most helpful comment
I am getting the same logs:
flutter: FS:---> openAudioSession
flutter: ---> openAudioSession
flutter: Resetting flutter_sound Recorder Plugin
@resetPlugin
iOS: ---> resetPlugin
iOS: <--- resetPlugin
As soon as it hits the line
I followed the simple_recorder.dart example in ^7.7.0.