我正在使用PubNub的WebRTC API进行视频和音频对话,就像魅力一样。接下来我想在我的应用程序中添加屏幕共享,但我在他们的文档中找不到任何有用的信息,反过来他们在几个地方提到了选项。
我现在使用的代码:
var phone = window.phone = PHONE({
number : $('#user_email').text() || "Anonymous", // listen on username line else Anonymous
publish_key : 'pub-xxx',
subscribe_key : 'sub-xxx',
});
phone.ready(function(){
$('#vid-box').show();
$('#video-switch').addClass('switch-on');
});
phone.receive(function(session){
session.connected(function(session) {
video_out.appendChild(session.video);
});
session.ended(function(session) {
video_out.innerHTML='';
});
});
function startVideo(){
if (!window.phone) {
alert("Login First!");
return false;
} else {
phone.dial( $('#other_side').text('ON') );
$('#cam-button-text').text('Stop Video');
}
}
答案 0 :(得分:0)
请参阅SO帖子How to use WebRTC + Pubnub Api for video chat client in Native android app
此外,这个PubNub演示/教程,Doodle with Strangers! Multi-User HTML5 Canvas in 4 Steps可能是您所要求的更合适的资源。