Reputation: 1
I tried to call on sipml5 through 2 browsers. Even though the call has been initiated, we can't listen anything from another side. How to tackle this issue?
By the way, the browsers that I have used are;
Upvotes: 0
Views: 143
Reputation: 2034
There isn't enough specific context in the description of the problem, I'm afraid, but you might want to check if the <audio>
element associated with the call (the one whose reference was assigned to the session configuration property audio_remote
) has the autoplay
attribute set. Alternatively, you could call play()
on the media element once the call has been established and incoming audio has been received.
Upvotes: 0