I'm trying to adjust microphone volume in Chrome App. Is is possible to do it? I'm using webrtc.
相关问题
- ICE vs STUN vs TURN
- Keep receiving Login Required error when trying to
- addIceCandidate with argument null result in error
- chrome.runtime.reload blocking the extension
- How to wait for page to finish loading all content
相关文章
- Unable to Mute HTML5 Video Tag in Firefox
- Google Chrome extension: How to find out if a user
- Android WebRTC DataChannel binary transfer mode
- Is there a Webbrowser control that supports html5
- How to use WebRTC to stream video to RTMP?
- Do 'Chrome Apps for Mobile' use native web
- Camera on Xamarin WebView
- iceConnectionState is disconnected (when used over
It's possible
Here is some sample code for the first option
and then use
audioContext.createMediaStreamDestination().stream
.yourStream
is the original stream that you got fromgetUserMedia()
.