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 {