-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow users to join conference without having to stream their own video/webcam #40
Comments
There is already an experiment: Join with/without camera. See this line. You can set connection.dontAttachStream = true;
connection.connect(sessionid); |
I should be able to allow everybody to join a session and if they choose to use their webcam then if they can do it by a click of a button, right? |
after joining without stream, how to attachstream? I have to open another session for it? |
connection.addStream({
audio: true,
video: true
}); Above code is asking all session participants to share You may want to share screen in one-way: connection.addStream({
oneway: true,
screen: true
}); You may want to share connection.peers['user-id'].addStream({
audio: true
}); Where Remember, |
If I understand correctly, for somebody to participate in a conference, they must use video stream as well. Is there a way to allow people to join the conference without having to use their camera?
Eg. I would like to invite a friend to a conference, however it would be up to him to stream from this end. He should basically see and chat with others without him having to share his video stream.
I tried "Deny" button when it prompt me to share webcam, the app did not allow me join the room/session.
The text was updated successfully, but these errors were encountered: