Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mic icon not disappearing in the browser tab. after record is stopped #314

Closed
naveenbharadwaj19 opened this issue May 17, 2024 · 3 comments
Labels

Comments

@naveenbharadwaj19
Copy link

Package version
5.0.4

Environment

  • OS: windows
  • Browser : Brave,Chrome

2024-05-17 13_40_11-Sarathy - Brave

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(const RecordConfig(
          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();
  }
@llfbandit llfbandit added the web label May 21, 2024
@llfbandit
Copy link
Owner

This should be fixed in next record_web: 1.1.0. I didn't reproduced it with the example.
Feedback welcome.

@llfbandit
Copy link
Owner

record_web 1.1.0 has been released.

@naveenbharadwaj19
Copy link
Author

Thanks, it has been resolved in version 5.1.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants