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
I don't think you'd need an special event for this. Everytime you call to init() in a local stream you could show the share your camera dialog. You could show it before calling init() and stop when you receive "access-accepted" or "access-denied".
Jeff
On Sep 11, 2013, at 1:47 AM, Javier Cerviño wrote:
I don't think you'd need an special event for this. Everytime you call to init() in a local stream you could show the share your camera dialog. You could show it before calling init() and stop when you receive "access-accepted" or "access-denied".
—
Reply to this email directly or view it on GitHub.
Add a new event to Erizo.Stream, access-query
Prior to Erizo.GetUserMedia, fire this event
var userMediaQuery = Erizo.StreamEvent({type: "access-query"});
that.dispatchEvent(userMediaQuery);
to notify clients that the getUserMedia is getting called to take any needed action. Ex: point out the share device dialog...
The text was updated successfully, but these errors were encountered: