Android 使用 Skype 进行群组视频通话(两人以上)的应用

Android App for making group video call(more than two participants) by utilizing Skype

问候,

"Skype uri"、"Skype Web SDK" 或其他选项能否帮助启动我的 android 应用程序(视频通话中有两个以上参与者)?我想知道 Skype 可以为我提供的所有选项,让我开发的应用程序导入 Skype 功能,或者让我的 android 应用程序 运行 成为负责处理视频通话的客户端 Skype。

为了您的信息,我使用了 Skype uri,它在两个参与者中工作正常。 skype:skype.test.user.1;skype.test.user.2;skype.test.user.3?call&video=true 但是,它没有发起超过两个参与者的群组视频通话。查看此 link 了解更多信息 msdn.microsoft.com/en-us/library/dn745882.aspx。他们提到 "Mobile Skype clients (iOS and Android) do not support initiating/hosting group video calls"。因此,根据我的理解,Skype uri 不会帮助我。

感谢您的帮助 齐亚德

总之,不行,不可能按你的要求去做。

the link you provided 所述,iOS 和 Android 上的 Skype 不支持主持或发起群组视频通话。此外,即使您能以某种方式解决这个问题,移动客户端也只能通过语音加入通话(在您的 link 中提到)。

Skype 网络 SDK does not allow video or audio on mobile devices:

The core framework enables presence, contacts, note and chat services that can be utilized by a mobile app via JavaScript. Media capability such as audio, video and desktop sharing however, is currently enabled via the Skype for Business Web App plugin available for browsers such IE and Firefox. This restricts all media modalities to desktops browsers only, as mobile browsers such as mobile Safari and the Windows Store browser do not allow 3rd party plugins.

基于我的研究以及 NitrogenReaction 在之前的回答中提到的。

目前,Skype URI 无法发起多人视频通话(Android)。

对于视频群聊,目前它不为 Android 开发人员提供 API。

因此,我使用 ooVoo 视频聊天 SDK 构建了我的应用程序。 SDK 允许我在我的应用程序中导入视频聊天(12 位参与者)。点击此 link 了解更多信息 https://developers.oovoo.com/docs

如果您想找到可以为您提供视频聊天 SDK 的其他供应商,请转到此 link https://bloggeek.me/missing-webrtc-paas-report/

谢谢, z