admin管理员组文章数量:1350038
Is there any event in JavaScript, I can listen to in browser, through which we can know whether headphones are inserted or removed?
I assume if we are able to iterate over devices of audio output in JavaScript, is there a possibility, we can deduct the change in the number of audio output devices?
Is there any event in JavaScript, I can listen to in browser, through which we can know whether headphones are inserted or removed?
I assume if we are able to iterate over devices of audio output in JavaScript, is there a possibility, we can deduct the change in the number of audio output devices?
Share Improve this question edited Mar 9, 2019 at 4:53 TheParam 10.6k4 gold badges43 silver badges54 bronze badges asked Jan 2, 2018 at 16:46 sarathprasathsarathprasath 6092 gold badges10 silver badges20 bronze badges 1- Check this developer.mozilla/en-US/docs/Web/API/BaseAudioContext/… and this developer.mozilla/en-US/docs/Web/API/Web_Audio_API – Rishikesh Chandra Commented Jan 2, 2018 at 17:03
2 Answers
Reset to default 8You can use the following: https://developer.mozilla/en-US/docs/Web/API/MediaDevices
example:
navigator.mediaDevices.addEventListener('devicechange', () => {
// Do whatever you need to with the devices
// Maybe use enumerateDevices() to see what connected
});
You could check the devices already connected from the following or call it on devicechange
:
navigator.mediaDevices.enumerateDevices()
.then(devices => {
// Check the connected devices
console.log(devices);
});
I am using phone-gap plugin for the same
HTML:
<button class="button button-stable" ng-click="checkHeadphone()">
JS:
$scope.checkHeadphone = function () {
window.plugins.headsetdetection.detect(function (detected) {
alert("Headphone " + detected)
})
}
本文标签: browserHow to detect whether a headphone is inserted or removed in JavaScriptStack Overflow
版权声明:本文标题:browser - How to detect whether a headphone is inserted or removed in JavaScript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743871656a2553578.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论