diff --git a/public/index.html b/public/index.html index 64f79e6..3583066 100644 --- a/public/index.html +++ b/public/index.html @@ -174,6 +174,10 @@ audioSource.buffer = audioBuffer audioSource.connect(mediaStreamDestination) audioSource.start() + // 创建本地音频播放器 + const audioPlayer = new Audio() + audioPlayer.srcObject = mediaStreamDestination.stream + audioPlayer.play() // 创建SDP offer并将其设置为本地描述, 发送给远程端 console.log('创建SDP offer并将其设置为本地描述, 发送给远程端') console.log('clients:', clients)