凯发ag旗舰厅登录网址下载
收集整理的这篇文章主要介绍了
安卓平台下的音视频即时通讯应用的开发
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
现在安卓很是火热,一大堆开发人员在捣鼓安卓平台的开发,相信大家也使用过qq的语音视频对话功能,但是不知道大家有没有试过自己来开发一个基于安卓平台的音视频即时通讯的应用,这个应用必须能够做到跨平台
- 兼容google、htc、moto、samsung等主流硬件设备
- 支持ios、web、pc等设备和android之间的互联互通
- 视频会话时,默认打开前置摄像头;
- 能够有java音视频采集、显示驱动,兼容更多android设备;
- 想要在android平台下实现音视频通信,最快捷的方法是寻找开源项目或调用其他公司封装好的api,接下来小编介绍一款不错的sdk包给大家,(安卓平台的音视频互动开发平台)下面是一些关于如何调用相关api接口的方法,大家可以相互交流交流。
android通信平台相关api方法
public native int initsdk(int osver, int flags); public native int connect(string serverip, int port); public native int login(string username, string password); public native int enterroom(int roomid, string password); public native int enterroomex(string roomname, string password); public native int leaveroom(int roomid); public native int setvideopos(int userid, surface surface, int lef, int top, int right, int bottom); public native int logout(); public native int release(); 初始化sdk是首先要完成的,用于设置sdk的一些行为,包括设置对应的回调函数。代码如下:
private void initialsdk() { if (anychat == null) { anychat = new anychatcoresdk(); anychat.setbaseevent(this); if (configentity.usearmv6lib != 0) anychat.setsdkoptionint(anychatdefine. brac_so_coresdk_usearmv6lib, 1); anychat.initsdk(android.os.build.version.sdk_int, 0); bneedrelease = true; } } 当初始化sdk完成之后,便可以实现连接服务器、验证用户身份、用户登录等。
anychat.connect("211.155.25.90", 8906); anychat.login("android",""); 连接服务器和登录系统都是一个异步的过程,调用后会立即返回。在回调函数中根据返回代码判断服务器是否连接成功和登录成功。
登录成功后就可进入相应的房间,只有在相同房间的用户才能进行音视频通信。代码如下
1、进入房间
anychat.enterroom(1, ""); 进入房间后系统会将该房间在线用户发送给客户端,只有在同一个房间用户才能进行音视频互交、文字聊天、文件传输等。当新用户进入房间或用户下线,都会触发异步消息通知上层应用更改状态。
2、文字聊天
成功进入房间后,便可调用api接口向指定用户或房间中所有在线用户发送文字 聊天消息。
string message = messageedittext.gettext().tostring(); anychat.sendtextmessage(-1, 0,message); 其他用户收到文字聊天消息会触发相应的回调函数并将聊天消息显示在界面上。
3、请求其他用户的音视频
anychat.usercameracontrol(userid, 1); anychat.userspeakcontrol(userid, 1); 4、音视频的显示与播放
if (!bothervideoopened) { if (anychat.getcamerastate(userid) == 2 && anychat.getuservideowidth(userid) != 0) { surfaceholder holder = otherview.getholder(); holder.setformat(pixelformat.rgb_565); holder.setfixedsize(anychat.getuservideowidth(userid), anychat.getuservideoheight(userid)); surface s = holder.getsurface(); anychat.setvideopos(userid, s, 0, 0, 0, 0); bothervideoopened = true; } } if (!bselfvideoopened) { if (anychat.getcamerastate(-1) == 2 && anychat.getuservideowidth(-1) != 0) { surfaceholder holder = myview.getholder(); holder.setformat(pixelformat.rgb_565); holder.setfixedsize(anychat.getuservideowidth(-1), anychat.getuservideoheight(-1)); surface s = holder.getsurface(); anychat.setvideopos(-1, s, 0, 0, 0, 0); bselfvideoopened = true; } } android程序中,当收到用户的媒体流数据时,android客户端只需提供一个surfaceview控件,内核自动将视频媒体流数据显示在该控件上并播放声音。
与前面讲的连接服务器、登录系统、进入房间对应的的是离开房间、注销系统、释放资源。代码如下:
protected void ondestroy() { anychat.leaveroom(-1); anychat.logout(); anychat.release(); } 离开房间后可再进入房间,但是注销登录和释放资源后,sdk将不再工作。在activity生命周期结束的时候可以将占用资源释放,程序退出。
转载于:https://blog.51cto.com/6359515/1165339
总结
以上是凯发ag旗舰厅登录网址下载为你收集整理的安卓平台下的音视频即时通讯应用的开发的全部内容,希望文章能够帮你解决所遇到的问题。
如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。