You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this example, it helped me a lot. I found that the addStream function hasn't been implemented on Safari as its not part of the standard apparently, so changing this line:
Hi! Thanks for reaching out :) I was sure that the "track vs stream" issue was already resolved in one of the previous PRs, but apparently not quite ... I'll take a look at this ;)
Thanks for this example, it helped me a lot. I found that the
addStream
function hasn't been implemented on Safari as its not part of the standard apparently, so changing this line:webrtc-working-example/web/main.js
Line 67 in b33afd6
to the following worked for me
localStream.getTracks().forEach(track => pc.addTrack(track, localStream))
Thanks again!
The text was updated successfully, but these errors were encountered: