Skype web sdkを使用してオンラインでSkypeビジネスを行っています。 私はマルチパーティビデオ会話、すなわちビデオ会議を作成しようとしています。マルチパーティビデオの会話に関する問題skype webを使用してオンラインでビジネス用Skypeを入手する
以下のコードを使用して会話を作成しています。
として怒鳴るvar conversation = app.conversationsManager.createConversation(); //created conversion
//self video listener
conversation.selfParticipant.video.state.changed(function (newState, reason, oldState) {
notify("selfParticipant.video.state : "+newState)
});
//self audio listener
conversation.selfParticipant.audio.state.changed(function (newState, reason, oldState) {
notify("selfParticipant.audio.state :"+newState);
});
//listner for conversion state
conversation.state.changed(function (newValue, reason, oldValue) {
notify("conversation.state : "+newValue)
});
//add participants
addParticipants(conversation,sip_uris); //Added participants
notify("conversation.videoService.maxVideos : "+conversation.videoService.maxVideos());
notify("conversation.videoService.videoMode : "+conversation.videoService.videoMode());
//start video service
conversation.videoService.start().then(function() {
notify("Video conference successfully started : "+conversation.uri());
},function (error) {
notify("Video conference start failed : "+error);
});
そして、上記のコードのログ
1:26:51 PM : selfParticipant.video.state : Disconnected
1:26:51 PM : selfParticipant.audio.state :Disconnected
1:26:51 PM : conversation.state : Created
1:26:51 PM : conversation.videoService.maxVideos : null
1:26:51 PM : conversation.videoService.videoMode : ActiveSpeaker
1:26:52 PM : conversation.state : Conferenced
1:26:53 PM : selfParticipant.audio.state :Connecting
1:26:53 PM : selfParticipant.video.state : Connecting
1:27:04 PM : selfParticipant.audio.state :Connected
1:27:04 PM : selfParticipant.video.state : Disconnected
1:27:04 PM : Video conference successfully started
私は2つの問題を抱えています。クロムにヌルとして示す
conversation.videoService.maxVideos()バージョン56.0.2924.87(64ビット)。
selfParticipant.video.state(接続への変更)はを切断取得しますが、selfParticipant.audio.stateは大丈夫です。
EDIT: スカイプウェブSDKのログhere
すべてのヘルプ高く評価しました。
ログを見ると、A/V(266〜274行目)を含むオファーの作成が開始され、後で再ネゴシエーションによってリモートパーティからの最終的な回答からビデオが削除されたように見えます。 Chrome to Chromeをテストしていますか?あなたは他のブラウザをテストしようとしましたか? – ShelbyZ
返信いただきありがとうございます、はい私はクロムにクロムをテストしています。自己参加型のビデオでさえも表示されません。私はfirefoxで試してみました。 @SatishakumarAwati。 –
Chrome 56で1対1のビデオ通話と音声通話をSkypeで行うことはできますか? – Venky