From 4978e8d51f9eeba56545142fcdcfd69a2c503cbd Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Mon, 19 Dec 2022 12:22:21 +0200 Subject: [PATCH] Update --- public/bundle.js | 3 ++- public/index.html | 3 +++ public/index.js | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/public/bundle.js b/public/bundle.js index 3e37dea..cbceb17 100644 --- a/public/bundle.js +++ b/public/bundle.js @@ -20775,10 +20775,11 @@ const connectRecvTransport = async () => { if (videoParams) { stream.addTrack(await getVideoTrask(videoParams)) } else { - console.log('❗ Don\'t have VIDEO stream to consume'); + console.log('❗ Have VIDEO stream to consume'); } if (audioParams) { + console.log('❗ Have AUDIO stream to consume'); let audioTrack = await getAudioTrask(audioParams) stream.addTrack(audioTrack) } else { diff --git a/public/index.html b/public/index.html index 71e0467..adfe778 100644 --- a/public/index.html +++ b/public/index.html @@ -59,6 +59,9 @@ +
+ sound-image +
diff --git a/public/index.js b/public/index.js index f8d888e..0d6298b 100644 --- a/public/index.js +++ b/public/index.js @@ -417,10 +417,11 @@ const connectRecvTransport = async () => { if (videoParams) { stream.addTrack(await getVideoTrask(videoParams)) } else { - console.log('❗ Don\'t have VIDEO stream to consume'); + console.log('❗ Have VIDEO stream to consume'); } if (audioParams) { + console.log('❗ Have AUDIO stream to consume'); let audioTrack = await getAudioTrask(audioParams) stream.addTrack(audioTrack) } else {