From 4e91f5989c93b1291efd1477c52166bf62fcad6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A7=89?= Date: Thu, 28 Sep 2023 02:47:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E6=92=AD=E6=94=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 4 ++++ 1 file changed, 4 insertions(+) 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)