In Reply To
Hey! Regarding the Safari issue: (I’m not 100% on this, but ) I seem to remember that some browsers restrict AudioContext
usage when it’s not created during a user-initiated action. I think this is why the sample project requires that a user click anywhere to start. Hope that helps!
Replies
No replies yet.
You know, I do remember reading a little about that at some point during troubleshooting. I think you’re right about it being the problem. The
createMediaStreamSource
andconnect
methods both happened in response to an incoming event from aRTCPeerConnection
object, not user interaction.Thanks for the comment!