You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The problem is that the red dot in the tab doesn't go away even after the recording is stopped. I checked if something is being recorded by using record.isRecording(), and I'm getting false. #260. Still facing same issue
code snippet
final record =AudioRecorder();
_stream =await record.startStream(constRecordConfig(
encoder:AudioEncoder.pcm16bits,
sampleRate:22000,
numChannels:2,
bitRate:128000));
Future<void> stopRecording() async {
var recordOutput =await record.stop();
_isRecording =false;
print("record output : $recordOutput");
notifyListeners();
}
The text was updated successfully, but these errors were encountered:
Package version
5.0.4
Environment
Describe the bug
The problem is that the red dot in the tab doesn't go away even after the recording is stopped. I checked if something is being recorded by using
record.isRecording()
, and I'm gettingfalse
. #260. Still facing same issuecode snippet
The text was updated successfully, but these errors were encountered: