使用android的sip进行Android视频通话

发布于 2024-12-28 11:07:15 字数 78 浏览 1 评论 0原文

我想在android 中开发一个视频通话程序。我想到使用android 2.3.3中引入的内置sip。但如何发起视频通话呢?我看到它不受支持。

I want to develop a program for a video calls in android. I thought of using the built in sip that introduced in android 2.3.3. But how can I initiate the video calls? I see that it is not supported.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2025-01-04 11:07:15

我相信通用 Android SIP 堆栈支持视频。

摘自:
https://developer.android.com/reference/android/net /sip/package-summary.html

如果您想创建通用 SIP 连接(例如视频通话)
或其他),您可以从 SipManager< 创建 SIP 连接/代码>
使用打开()。如果您只想创建音频 SIP 呼叫,
不过,您应该使用 SipAudioCall 类,如描述的
如上所述。


如果您不介意使用外部 SIP 堆栈,请查看:

http://www.youtube。 com/watch?v=g1NHEsXFEns

它使用 Jain-SIP

编辑:最近,这个项目似乎是原生 Android SIP 领域的领导者:

https://code.google.com/p/csipsimple/ - 开源,它们提供进行语音和视频通话所需的一切。

I believe the generic Android SIP stack supports video.

Taken from:
https://developer.android.com/reference/android/net/sip/package-summary.html

If you want to create generic SIP connections (such as for video calls
or other), you can create a SIP connection from the SipManager,
using open(). If you only want to create audio SIP calls,
though, you should use the SipAudioCall class, as described
above.

If you don't mind using external SIP stacks, check out this:

http://www.youtube.com/watch?v=g1NHEsXFEns

which uses Jain-SIP.

EDIT: As of late, this project seems to be the leader in the native Android SIP space:

https://code.google.com/p/csipsimple/ - open source, and they offer everything you need to make voice and video calls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文