-3
我要不斷地調用函數AAP(),使同一網站的其他頁面得到相同的視覺,但只得到在頁面加載叫連續視頻流的通話使用HTML5
var video = document.querySelector('video');
if (navigator.getUserMedia) {
navigator.getUserMedia({ audio: true, video: true }, function (stream) {
setTimeout(function() { aaP(window.URL.createObjectURL(stream)); }, 99);
}, errorCallback);
}
function aaP(aapV) {
alert(5);
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
video.src = window.URL.createObjectURL(stream);
}
}
xmlHttp.open("GET", "WebForm1.aspx?res=aa &mssg=" + aapV, true);
xmlHttp.sen
實際上我想構建視頻會議(1對多) –
我已更新我的答案,並提供了有關該主題的一些提示 –
感謝@florestan –