문제

I am currently thinking about how to realise an app that feeds multiple audio interfaces with different sounds. For example if I have a second sound card at disposal.

As far as I researched the AudioContext of Web Audio only feeds a single destination. I haven't seen a way to select the actual destination hardware.

Can anyone think of a way to work around this?

도움이 되었습니까?

해결책

Nope. It'll use whatever your system default is.

다른 팁

You can output audio from an audio/video element to a specified output device using setSinkid()

videoElement.setSinkId(deviceID).then().catch()

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top