diff --git a/public/index.html b/public/index.html index bef7332..64f79e6 100644 --- a/public/index.html +++ b/public/index.html @@ -124,6 +124,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)