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

RecordRTC doesn't removes chrome "red dot" #119

Closed
ktabori opened this issue Apr 14, 2016 · 8 comments
Closed

RecordRTC doesn't removes chrome "red dot" #119

ktabori opened this issue Apr 14, 2016 · 8 comments

Comments

@ktabori
Copy link

ktabori commented Apr 14, 2016

screenshot 2016-04-14 12 40 30

If I start recording with recorder.startRecording(); the red dot gets visible on chrome tab. It is fine, but when I stop recording with recorder.stopRecording(); the red dot is still visible.

I found a workaround!, if I use mediaStream.stop(); then the red dot got removed but I got also an error from the browser:

screenshot 2016-04-14 12 44 30

Do you have any idea about what is wrong?

@muaz-khan
Copy link
Owner

You can easily skip it.

var recorder = RecordRTC(mediaStream, {
  disableLogs: true
});

PS. It should be warning notification rather than an error. It will be fixed in next commit.

@ktabori
Copy link
Author

ktabori commented Apr 14, 2016

Thank you for the fast answer! Can we close this issue?

@buzinas
Copy link

buzinas commented May 12, 2017

Shouldn't the Recorder automatically stop the stream on stopRecording?

Related zzarcon/microm#24

If you agree, I can open a PR for it.

@zzarcon
Copy link

zzarcon commented May 13, 2017

@buzinas I think you are right, stopRecording should do that if possible.

Will be happy to merge that if you open PR. Thanks! 🚀

@Shahzaibmalik55
Copy link

@muaz-khan i am using this library but after adding disableLogs: true the red dot doesn't disappear

@Aman1324
Copy link

is there any solution of removing red dot with recordRTC. ??

@muaz-khan
Copy link
Owner

@Aman1324 You've to stop (i.e. release) the MediaStream object:

stream.getTracks().forEach(function(track) {
    track..stop();
});

@Aman1324
Copy link

thanks @muaz-khan for your answer. One more question i want to ask that what is the ios version and safri browser compatibility of recordRTC.

AndersDJohnson pushed a commit to AndersDJohnson/RecordRTC that referenced this issue Apr 8, 2019
Now GifRecorder can record CanvasRenderingContext2D as well.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants