-
Notifications
You must be signed in to change notification settings - Fork 43
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
Document the use of sdpfilter #18
Comments
Alternatively, we could add actual settings for specific things like bandwidthLimit, but that's non-standard. |
this is still missing from the documentation |
@magestican feel free to add a pull request |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The options in quickconnect can contain an sdpfilter like so:
{
room: channelId,
iceServers: config.connection.iceServers,
sdpfilter: function(sdp) {
console.log('filtering sdp');
return limitBandwidthSDP(sdp);
}
}
Should be documented (maybe even add to the book)
The text was updated successfully, but these errors were encountered: