我正在使用Twilio Javascript ,并尝试将输出切换/禁用到扬声器。我可以使麦克风静音,但是在禁用向扬声器的音频输出方面需要帮助。
我尝试了以下步骤,但是没有用
// muting microphone is working
this.outGoingCall.mute(muteStatus);
// But attempt to disable output is not working
// none of these are working
this.twilioDevice.audio.disconnect();
this.outGoingCall.audio.outgoing(false);
this.twilioDevice.audio.outgoing(false);