--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Those options are not OK for adapter.js, and that’s what that message is telling you. Try something like this
var constraints = {
audio: false,
video: {
width : { max : 320 },
height : { max : 240 },
framerate : { exact : 15 }
}
};
var options = {
localVideo : videoInput,
onicecandidate : onIceCandidate,
mediaConstraints : constraints,
sendSource : 'screen'
};
The value of sendSource is a string, and it depends on what you want to share
'screen': will let you share the whole screen. If you have more than one, you can choose which one to share'window': lets you choose between all open windows[ 'screen', 'window' ]: WARNING! Only accepted by Chrome, this will let the user choose between full screens or windows. 'webcam': this is the default value of you don't specify anyhting here. Guess what'll happen ;-)--
--
--
--
--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+unsubscribe@googlegroups.com.
To post to this group, send email to kur...@googlegroups.com.
Visit this group at https://groups.google.com/group/kurento.
To view this discussion on the web visit https://groups.google.com/d/msgid/kurento/c56a5a40-014c-49f4-9e32-df12f14e5782%40googlegroups.com.