peerConnection()を介して別のピアに送信する前に、ローカルビデオストリーム「localStream」を編集する方法はありますか?
navigator.getUserMedia({video: true, audio: true}, function(localMediaStream) {
var video = document.querySelector('video');
//How do I say edit a few pixes in the localMediaSttream before
//using peerConnection() to send it to another peer?
}, onFailSoHard);