admin管理员组文章数量:1344505
I'm using the recorder.js and getUserMedia
to do some audio recording in the browser. When starting the recording, the user is given the "Allow this site to use your microphone" prompt, and once they click allow, Chrome adds an indicator onto the tab's favicon to show that it is recording:
(source: ubuntuone)
My issue is that the indicator never goes away, even after my application has stopped recording. Basically, I'd like to revoke my own recording permissions. Is this possible?
I'm using the recorder.js and getUserMedia
to do some audio recording in the browser. When starting the recording, the user is given the "Allow this site to use your microphone" prompt, and once they click allow, Chrome adds an indicator onto the tab's favicon to show that it is recording:
(source: ubuntuone.)
My issue is that the indicator never goes away, even after my application has stopped recording. Basically, I'd like to revoke my own recording permissions. Is this possible?
Share Improve this question edited Aug 27, 2021 at 18:34 Glorfindel 22.7k13 gold badges89 silver badges119 bronze badges asked Jul 22, 2013 at 9:19 nickfnickf 547k199 gold badges658 silver badges727 bronze badges1 Answer
Reset to default 12When you generate a new MediaStream
object from a getUserMedia
call, it contains a MediaStreamTrack
object.
Calling MediaStream.getAudioTracks()
should return a sequence that represents a snapshot of all the MediaStreamTrack
objects in the stream with the kind "audio"
. Same thing applies when calling MediaStream.getVideoTracks()
to retrieve video track objects.
According to the spec, it looks like you can revoke all given permissions to your app by calling MediaStreamTrack.stop()
on the audio track object.
Source: Media Capture and Stream API spec
本文标签: javascriptHow to cancel getUserMedia indicator after recordingStack Overflow
版权声明:本文标题:javascript - How to cancel getUserMedia indicator after recording - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743791671a2539684.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论