I am testing a peer-to-peer video chat application using webrtc. when I install videos like
var video_constraints = { mandatory: { maxHeight: 120, maxWidth: 160 }, optional: [] }; window.navigator.webkitGetUserMedia({ audio: true, video: video_constraints }, onSuccess, onError);
this fires in Enrror mode. what could be the reason?
source share