AnyChat技术支持论坛

标题: AnyChat使用攻略之独立部署Linux中心录像服务器 [打印本页]

作者: 佰锐技术-高萌    时间: 2014-8-22 15:11
标题: AnyChat使用攻略之独立部署Linux中心录像服务器
Windows平台中心录像服务器部署请参考http://bbs.anychat.cn/forum.php? ... d=20&extra=page%3D1

AnyChat for Linux SDK自V5.0的r4172版本开始支持Linux中心服务器录像(打开下载页,位于SDK包bin\recordserver目录下),支持服务器单独录像和服务器合成录像,集中保存,录像任务可由客户端发起,也可由业务服务器发起,录像完成之后,将录像文件名反馈给业务服务器,业务服务器可保存到数据库中便于集中维护。录像保存路径可设置。

下面一步一步介绍如何部署中心录像服务器,以及让中心录像服务器正常工作的注意事项:

一、下载AnyChat for Linux SDK包(要求V5.0的4172及以上版本),解压缩,部署核心服务器和业务服务器(参考:AnyChat使用攻略之独立部署Linux视频服务器),让客户端能与核心服务器,以及核心服务器与业务服务器之间能正常的工作。
启动核心服务器之后,查看核心服务器的日志文件(AnyChatCoreServer.log),显示内容如下:


二、进入SDK包的bin\recordserver目录,里面包含如下图所示的文件:


三、中心录像服务器参数配置。打开AnyChatRecordServer.ini配置文件,内容如下:
  1. [Base Settings]
  2. DebugMode=1
  3. ServerIpAddr=127.0.0.1
  4. ServerUdpPort=8907
  5. RecordRootDir=record
  6. RecordRootURL=
  7. ServerCallBackPathType=1
  8. ClientCallBackPathType=2
复制代码
配置项详细说明如下:
    DebugMode=[0,1] , 配置为0时,不在日志中输出相关的调试信息;为1时,可输出更多的调试信息,如录像开始,录像结束,录像文件名等,便于分析故障原因;      
    ServerIpAddr=127.0.0.1    ,配置核心服务器的IP地址,录像服务器与核心服务在同一台计算机时,默认为127.0.0.1
    ServerUdpPort=8907         , 配置核心服务器的UDP通信端口,默认为8907
    RecordRootDir=record       ,表示录像文件保存的本地根目录,可以为相对地址,如:RecordRootDir=record,表示当前录像服务器目录下的record子目录,也可以为绝对路径,如:RecordRootDir=/home/recordRecordRootURL= ,表示录像文件保存本地根目录的互联网访问地址,是一个URL地址,通过该URL地址,可以访问到中心录像服务器目录下的指定文件,通常需要在Web服务器(如Apache)中设置一个虚拟路径指向【RecordRootDir】,而【RecordRootURL】就是该虚拟路径;
    ServerCallBackPathType=[0,1,2] ,表示中心录像服务器完成录像之后,触发业务服务器回调事件中的路径类型:0 相对路径、1 绝对路径、2 URL路径;
    ClientCallBackPathType=[0,1,2] ,表示中心录像服务器完成录像之后,触发客户端回调事件中的路径类型:0 相对路径、1 绝对路径、2 URL路径;


四、启动中心录像服务器。运行runanychatrecordserver.sh,出现如下图所示的界面

若在日志中显示“Successfully connect to the anychatcoreserver!”则表示中心录像服务器与核心服务器连接成功,工作正常;否则请检查相关参数配置是否匹配,如AnyChatRecordServer.ini中的UDP端口和AnyChatCoreServer.ini中的UDP端口是否一致,另请检查程序的版本是否符合要求。

五、启动中心录像。客户端调用API:BRAC_StreamRecordCtrl(...),或是业务服务器调用API:BRAS_StreamRecordCtrl(...)可启动或停止对目标用户的录像任务,停止录像之后,若录像成功,则会在业务服务器上触发相应的回调函数调用。


六、注意事项:
    1、由于早期的授权证书不支持中心录像服务器,若希望使用该功能(为可选模块),请与我们的商务人员联系升级授权证书;
    2、在中心服务器录像过程中,客户端网络异常掉线将会中断录像,并触发业务服务器的录像回调函数;
    3、停止录像、用户注销等操作与业务服务器触发录像回调函数的时机是异步的过程,在业务服务器编程时需要考虑这种时间差的因素,可能存在先触发用户注销的回调,然后再触发录像完成的回调;


关于回调事件路径类型:
0    相对路径,形如:2014-08-31/12-08-31-074_AnyChat4_53.mp4
1    绝对路径,形如:d:\record\2014-08-31\12-08-31-074_AnyChat4_53.mp4
2    URL路径,形如:http://www.anychat.cn/record/2014-08-31/12-08-31-074_AnyChat4_53.mp4

默认配置中:
【ServerCallBackPathType=1】表示业务服务器回调事件中返回绝对路径
【ClientCallBackPathType=2】表示客户端回调事件中返回URL地址,便于客户端可以直接通过该URL地址访问中心录像服务器上面的文件;

参考:
1、AnyChat音视频录制整体解决方案
2、有关中心录像服务器配置项【RecordRootURL】的说明



作者: mylee    时间: 2015-7-16 11:36
视频生成的文件名称如何自定义?

作者: admin    时间: 2015-7-16 11:40
您好,文件名暂时不可以自定义,您可以在业务服务器的回调函数中调用操作系统的API接口直接对已生成的文件进行改名处理。
作者: 佰锐科技—赖彬    时间: 2015-7-16 11:44
mylee 发表于 2015-7-16 11:36
视频生成的文件名称如何自定义?

您好,视频生成的文件名称是按时间和用户名。
作者: mylee    时间: 2015-7-16 11:48
佰锐科技—赖彬 发表于 2015-7-16 11:44
您好,视频生成的文件名称是按时间和用户名。

可以修改成自定义的么?
作者: admin    时间: 2015-7-16 11:50
后续的版本会考虑您的建议,谢谢。
作者: liweiqiang888    时间: 2015-8-5 21:00
录像服务linu版本怎么后台运行?-d 貌似不行?
作者: admin    时间: 2015-8-5 21:04
您好,请参考:关于linux服务器下让业务服务器在后台运行的解决方案,方法是类似的。
作者: LCL5555555    时间: 2016-12-12 09:05
[2016-12-12 09:00:40(978)][I]        ---------------------------AnyChat Platform Core SDK Client Log--------------------------- [2016-12-12 09:00:40(978)][I]        Load BRAnyChatCore.dll success!(V6.2 Build Time:Nov 20 2016 13:42:22) [2016-12-12 09:00:40(978)][I]        Load BRMiscUtil.dll success!(V6.2 Build Time:Nov 20 2016 13:44:17) [2016-12-12 09:00:41(056)][I]        Load BRMediaUtil.dll success!(V6.2 Build Time:Nov 20 2016 13:41:38) [2016-12-12 09:00:41(056)][I]        Load BRMediaShow.dll success!(V6.2 Build Time:Nov 20 2016 13:44:22) [2016-12-12 09:00:41(056)][I]        Load BRMediaCore.dll success!(V6.2 Build Time:Nov 20 2016 13:44:35) [2016-12-12 09:00:41(103)][I]        Video capture device supported: [2016-12-12 09:00:41(103)][I]                1-Lenovo USB2.0 UVC Camera [2016-12-12 09:00:41(103)][I]        Audio capture device supported: [2016-12-12 09:00:41(103)][I]                1-麦克风 (Lenovo USB2.0 Audio) [2016-12-12 09:00:41(134)][I]        Start network engine(IPv4 mode)... [2016-12-12 09:00:41(134)][I]        Invoke        Connect(10.7.7.100,8906)=0 [2016-12-12 09:00:41(134)][I]        Invoke        Login(usernameC端登录名)=0 [2016-12-12 09:00:41(150)][I]        Create anychatdnsserver connect:10.7.7.100(8906) [2016-12-12 09:00:41(353)][I]        On pre-connection result, errorcode:0, anychatcoreserver, 10.7.7.100(8906, tcp:1) [2016-12-12 09:00:41(353)][I]        CheckClientSocketLink         Connect(ip=10.7.7.100,port=8906) [2016-12-12 09:00:41(447)][I]        On connect return, errorcode:0 [2016-12-12 09:00:41(494)][I]        Server version: V6.1(Build Time:2016-06-30 15:26:09, Linux server) [2016-12-12 09:00:41(556)][I]        Message        OnConnect(bSuccess:1, errorcode=0) [2016-12-12 09:00:41(681)][I]        Message        OnLoginSystem(userid=-12,errorcode=0,username=PC端登录名), msg deliver worked(1) [2016-12-12 09:00:41(681)][I]        Server running time: 2 days, 13 hours, 43 minutes, license mode:0, cloud:0 [2016-12-12 09:00:41(728)][I]        Connection to streaming media server successfully!(udp delay:23ms) [2016-12-12 09:00:41(743)][I]        Object InitFlags:0x2 [2016-12-12 09:00:41(743)][I]        Invoke        ObjectControl(objecttype:4, objectid:-1, ctrlcode:3, params:-12, 0, 0, 0) = 0 [2016-12-12 09:00:41(845)][I]        Sync area data finish, total area count:1 [2016-12-12 09:00:41(845)][I]                Area object(type:4) id:10001 Area Name:中心营业厅 Guest Count:0 Agent Count:0 [2016-12-12 09:00:42(158)][I]        Invoke        ObjectControl(objecttype:4, objectid:10001, ctrlcode:401, params:0, 0, 0, 0) = 0 [2016-12-12 09:00:42(277)][I]        Area(10001) object Event, enter result errorcode:0, queue count:1 [2016-12-12 09:01:12(633)][I]        Invoke        ObjectControl(objecttype:6, objectid:-12, ctrlcode:602, params:0, 0, 0, 0) = 0 [2016-12-12 09:01:12(789)][I]        Invoke        VideoCallControl(EventType:1, UserId:-13, ErrorCode:0, dwFlags:0, dwParam:0, UserStr=0 [2016-12-12 09:01:12(820)][I]        Message        OnVideoCallEvent(EventType:2, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:0 [2016-12-12 09:01:14(177)][I]        Message        OnVideoCallEvent(EventType:3, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:1 [2016-12-12 09:01:14(177)][I]        Invoke        EnterRoom(roomid=1) [2016-12-12 09:01:14(302)][I]        Message        OnEnterRoom(roomid=1,errorcode=0,siteindex=0) [2016-12-12 09:01:14(302)][I]        Message        OnReceiveOnlineUser(count=1,roomid=1) [2016-12-12 09:01:14(334)][I]        Invoke        UserCameraControl(userid=-12, bOpen=1, stream=0) [2016-12-12 09:01:14(365)][I]        Message        OnUserEnterRoom(userid=-13,nickname=android1,siteindex=1) [2016-12-12 09:01:14(365)][I]        Invoke        UserSpeakControl(userid=-12,bOpen=1) [2016-12-12 09:01:14(424)][I]        WaveIn Audio Capture Driver(麦克风 (Lenovo USB2.0 Audio)) [2016-12-12 09:01:14(424)][I]        Audio Init, error:0, device:0, 1, 16000, 16, capmode:0 [2016-12-12 09:01:14(424)][I]        Audio codec init, handle:1, 11, 1, 16000, 16, 15850 [2016-12-12 09:01:14(472)][I]        Audio Playback Device Init(0, 1, 16000, 16), WaveOut Playback Driver [2016-12-12 09:01:14(487)][I]        Audio FX Status: VAD:1, NS:1, AGC:1, AEC:1 [2016-12-12 09:01:14(492)][I]        Invoke        StreamRecordCtrlEx(-1, 1, 0x1837, 0, LCL)=0 [2016-12-12 09:01:14(502)][I]        user(-12) record audio stream parameter: codec:11, 1 channel, 16000Hz [2016-12-12 09:01:14(513)][I]        Invoke        UserCameraControl(userid=-13, bOpen=1, stream=0) [2016-12-12 09:01:14(533)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=1) [2016-12-12 09:01:14(586)][I]        Invoke        UserCameraControl(userid=-13, bOpen=1, stream=0) [2016-12-12 09:01:14(606)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=1) [2016-12-12 09:01:14(651)][I]        MinCroppingSize(1280, 720)        MaxCroppingSize(1280, 720)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(651)][I]        MinCroppingSize(352, 288)        MaxCroppingSize(352, 288)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(652)][I]        MinCroppingSize(320, 240)        MaxCroppingSize(320, 240)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(652)][I]        MinCroppingSize(176, 144)        MaxCroppingSize(176, 144)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(652)][I]        MinCroppingSize(160, 120)        MaxCroppingSize(160, 120)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(653)][I]        MinCroppingSize(640, 360)        MaxCroppingSize(640, 360)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(653)][I]        MinCroppingSize(640, 480)        MaxCroppingSize(640, 480)        Format(MJPG, 0x47504a4d, 30fps) [2016-12-12 09:01:14(653)][I]        MinCroppingSize(1280, 720)        MaxCroppingSize(1280, 720)        Format(YUY2, 0x32595559, 10fps) [2016-12-12 09:01:14(654)][I]        MinCroppingSize(352, 288)        MaxCroppingSize(352, 288)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(654)][I]        MinCroppingSize(320, 240)        MaxCroppingSize(320, 240)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(654)][I]        MinCroppingSize(176, 144)        MaxCroppingSize(176, 144)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(655)][I]        MinCroppingSize(160, 120)        MaxCroppingSize(160, 120)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(655)][I]        MinCroppingSize(640, 360)        MaxCroppingSize(640, 360)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(655)][I]        MinCroppingSize(640, 480)        MaxCroppingSize(640, 480)        Format(YUY2, 0x32595559, 30fps) [2016-12-12 09:01:14(656)][I]        Prepare config camera(1-Lenovo USB2.0 UVC Camera): 320x240, 25fps [2016-12-12 09:01:14(658)][I]                The best video format is detected: YUY2 [2016-12-12 09:01:14(659)][I]                SetFormat(320x240, YUY2, 25fps) = 0 [2016-12-12 09:01:14(659)][I]                Video Config Size(320, 240)        Format(YUY2, 25fps) [2016-12-12 09:01:14(680)][I]        video init finish:320x240, YUY2, fps:25, codecid:1 [2016-12-12 09:01:14(796)][I]        On Remote UserCameraControl(dwUserId:-13, bOpen:1) [2016-12-12 09:01:14(846)][I]        video codec init:codec:1, 15fps, 320x240, bitrate:90kbps, quality:3, preset:3, gop:30, handle:3 [2016-12-12 09:01:14(848)][I]        User(-12) record video stream parameter: codec:1, 320x240, 15fps [2016-12-12 09:01:14(870)][I]        User(-12) record init successed! filepath:Stream Record [2016-12-12 09:01:14(882)][I]        On Remote UserSpeakControl(dwUserId:-13, bOpen:1) [2016-12-12 09:01:16(560)][I]        Message        OnP2PConnectState(userid=-13, state=1) [2016-12-12 09:01:19(758)][I]        Message        OnP2PConnectState(userid=-13, state=3) [2016-12-12 09:01:19(828)][I]        userid(-13) audio decode, codec:11, 1 channel, 16000Hz [2016-12-12 09:01:21(014)][I]        userid(-13) video decode, codec:1, 320x240, delay:0ms [2016-12-12 09:01:22(618)][I]        Invoke        SnapShot(-13, 0x0, 0)=0 [2016-12-12 09:01:22(686)][I]        Prepare create record file:C:\PROGRA~2\BAIRUI~1\ANYCHA~1\temp\snapshot\2016-12-12\09-01-22-681_android1_28.jpg, dwFlags:0x0 [2016-12-12 09:01:22(769)][I]        Invoke        TransFile(dwUserid=-1, dwTaskId:0, PathName:0)=710 [2016-12-12 09:01:31(522)][I]        Invoke        VideoCallControl(EventType:4, UserId:-13, ErrorCode:0, dwFlags:0, dwParam:0, UserStr=0 [2016-12-12 09:01:31(562)][I]        Message        OnVideoCallEvent(EventType:4, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:0 [2016-12-12 09:01:31(574)][I]        Invoke        StreamRecordCtrlEx(-1, 0, 0x1837, 0, LCL)=0 [2016-12-12 09:01:31(740)][I]        Invoke        LeaveRoom(roomid=1)        Elapse:157 ms [2016-12-12 09:01:31(740)][I]        Invoke        UserCameraControl(userid=-13, bOpen=0, stream=0) [2016-12-12 09:01:31(790)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=0) [2016-12-12 09:01:31(806)][I]        Invoke        ObjectControl(objecttype:6, objectid:-12, ctrlcode:604, params:0, 0, 0, 0) = 0 [2016-12-12 09:01:32(206)][I]        socket error, disconnected by peer!, bTcp(1) - userid(-13) [2016-12-12 09:01:32(206)][I]        OnSocketClose, index(3)-errorcode(0-183), flags:0x10481, bTcp(1),userid(-13), list:0
作者: LCL5555555    时间: 2016-12-12 09:07
LCL5555555 发表于 2016-12-12 09:05
[2016-12-12 09:00:40(978)]        ---------------------------AnyChat Platform Core SDK Client Log---------- ...

[2016-12-12 09:00:40(978)][I]        ---------------------------AnyChat Platform Core SDK Client Log---------------------------
[2016-12-12 09:00:40(978)][I]        Load BRAnyChatCore.dll success!(V6.2 Build Time:Nov 20 2016 13:42:22)
[2016-12-12 09:00:40(978)][I]        Load BRMiscUtil.dll success!(V6.2 Build Time:Nov 20 2016 13:44:17)
[2016-12-12 09:00:41(056)][I]        Load BRMediaUtil.dll success!(V6.2 Build Time:Nov 20 2016 13:41:38)
[2016-12-12 09:00:41(056)][I]        Load BRMediaShow.dll success!(V6.2 Build Time:Nov 20 2016 13:44:22)
[2016-12-12 09:00:41(056)][I]        Load BRMediaCore.dll success!(V6.2 Build Time:Nov 20 2016 13:44:35)
[2016-12-12 09:00:41(103)][I]        Video capture device supported:
[2016-12-12 09:00:41(103)][I]                1-Lenovo USB2.0 UVC Camera
[2016-12-12 09:00:41(103)][I]        Audio capture device supported:
[2016-12-12 09:00:41(103)][I]                1-麦克风 (Lenovo USB2.0 Audio)
[2016-12-12 09:00:41(134)][I]        Start network engine(IPv4 mode)...
[2016-12-12 09:00:41(134)][I]        Invoke        Connect(10.7.7.100,8906)=0
[2016-12-12 09:00:41(134)][I]        Invoke        Login(usernameC端登录名)=0
[2016-12-12 09:00:41(150)][I]        Create anychatdnsserver connect:10.7.7.100(8906)
[2016-12-12 09:00:41(353)][I]        On pre-connection result, errorcode:0, anychatcoreserver, 10.7.7.100(8906, tcp:1)
[2016-12-12 09:00:41(353)][I]        CheckClientSocketLink         Connect(ip=10.7.7.100,port=8906)
[2016-12-12 09:00:41(447)][I]        On connect return, errorcode:0
[2016-12-12 09:00:41(494)][I]        Server version: V6.1(Build Time:2016-06-30 15:26:09, Linux server)
[2016-12-12 09:00:41(556)][I]        Message        OnConnect(bSuccess:1, errorcode=0)
[2016-12-12 09:00:41(681)][I]        Message        OnLoginSystem(userid=-12,errorcode=0,username=PC端登录名), msg deliver worked(1)
[2016-12-12 09:00:41(681)][I]        Server running time: 2 days, 13 hours, 43 minutes, license mode:0, cloud:0
[2016-12-12 09:00:41(728)][I]        Connection to streaming media server successfully!(udp delay:23ms)
[2016-12-12 09:00:41(743)][I]        Object InitFlags:0x2
[2016-12-12 09:00:41(743)][I]        Invoke        ObjectControl(objecttype:4, objectid:-1, ctrlcode:3, params:-12, 0, 0, 0) = 0
[2016-12-12 09:00:41(845)][I]        Sync area data finish, total area count:1
[2016-12-12 09:00:41(845)][I]                Area object(type:4) id:10001 Area Name:中心营业厅 Guest Count:0 Agent Count:0
[2016-12-12 09:00:42(158)][I]        Invoke        ObjectControl(objecttype:4, objectid:10001, ctrlcode:401, params:0, 0, 0, 0) = 0
[2016-12-12 09:00:42(277)][I]        Area(10001) object Event, enter result errorcode:0, queue count:1
[2016-12-12 09:01:12(633)][I]        Invoke        ObjectControl(objecttype:6, objectid:-12, ctrlcode:602, params:0, 0, 0, 0) = 0
[2016-12-12 09:01:12(789)][I]        Invoke        VideoCallControl(EventType:1, UserId:-13, ErrorCode:0, dwFlags:0, dwParam:0, UserStr=0
[2016-12-12 09:01:12(820)][I]        Message        OnVideoCallEvent(EventType:2, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:0
[2016-12-12 09:01:14(177)][I]        Message        OnVideoCallEvent(EventType:3, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:1
[2016-12-12 09:01:14(177)][I]        Invoke        EnterRoom(roomid=1)
[2016-12-12 09:01:14(302)][I]        Message        OnEnterRoom(roomid=1,errorcode=0,siteindex=0)
[2016-12-12 09:01:14(302)][I]        Message        OnReceiveOnlineUser(count=1,roomid=1)
[2016-12-12 09:01:14(334)][I]        Invoke        UserCameraControl(userid=-12, bOpen=1, stream=0)
[2016-12-12 09:01:14(365)][I]        Message        OnUserEnterRoom(userid=-13,nickname=android1,siteindex=1)
[2016-12-12 09:01:14(365)][I]        Invoke        UserSpeakControl(userid=-12,bOpen=1)
[2016-12-12 09:01:14(424)][I]        WaveIn Audio Capture Driver(麦克风 (Lenovo USB2.0 Audio))
[2016-12-12 09:01:14(424)][I]        Audio Init, error:0, device:0, 1, 16000, 16, capmode:0
[2016-12-12 09:01:14(424)][I]        Audio codec init, handle:1, 11, 1, 16000, 16, 15850
[2016-12-12 09:01:14(472)][I]        Audio Playback Device Init(0, 1, 16000, 16), WaveOut Playback Driver
[2016-12-12 09:01:14(487)][I]        Audio FX Status: VAD:1, NS:1, AGC:1, AEC:1
[2016-12-12 09:01:14(492)][I]        Invoke        StreamRecordCtrlEx(-1, 1, 0x1837, 0, LCL)=0
[2016-12-12 09:01:14(502)][I]        user(-12) record audio stream parameter: codec:11, 1 channel, 16000Hz
[2016-12-12 09:01:14(513)][I]        Invoke        UserCameraControl(userid=-13, bOpen=1, stream=0)
[2016-12-12 09:01:14(533)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=1)
[2016-12-12 09:01:14(586)][I]        Invoke        UserCameraControl(userid=-13, bOpen=1, stream=0)
[2016-12-12 09:01:14(606)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=1)
[2016-12-12 09:01:14(651)][I]        MinCroppingSize(1280, 720)        MaxCroppingSize(1280, 720)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(651)][I]        MinCroppingSize(352, 288)        MaxCroppingSize(352, 288)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(652)][I]        MinCroppingSize(320, 240)        MaxCroppingSize(320, 240)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(652)][I]        MinCroppingSize(176, 144)        MaxCroppingSize(176, 144)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(652)][I]        MinCroppingSize(160, 120)        MaxCroppingSize(160, 120)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(653)][I]        MinCroppingSize(640, 360)        MaxCroppingSize(640, 360)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(653)][I]        MinCroppingSize(640, 480)        MaxCroppingSize(640, 480)        Format(MJPG, 0x47504a4d, 30fps)
[2016-12-12 09:01:14(653)][I]        MinCroppingSize(1280, 720)        MaxCroppingSize(1280, 720)        Format(YUY2, 0x32595559, 10fps)
[2016-12-12 09:01:14(654)][I]        MinCroppingSize(352, 288)        MaxCroppingSize(352, 288)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(654)][I]        MinCroppingSize(320, 240)        MaxCroppingSize(320, 240)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(654)][I]        MinCroppingSize(176, 144)        MaxCroppingSize(176, 144)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(655)][I]        MinCroppingSize(160, 120)        MaxCroppingSize(160, 120)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(655)][I]        MinCroppingSize(640, 360)        MaxCroppingSize(640, 360)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(655)][I]        MinCroppingSize(640, 480)        MaxCroppingSize(640, 480)        Format(YUY2, 0x32595559, 30fps)
[2016-12-12 09:01:14(656)][I]        Prepare config camera(1-Lenovo USB2.0 UVC Camera): 320x240, 25fps
[2016-12-12 09:01:14(658)][I]                The best video format is detected: YUY2
[2016-12-12 09:01:14(659)][I]                SetFormat(320x240, YUY2, 25fps) = 0
[2016-12-12 09:01:14(659)][I]                Video Config Size(320, 240)        Format(YUY2, 25fps)
[2016-12-12 09:01:14(680)][I]        video init finish:320x240, YUY2, fps:25, codecid:1
[2016-12-12 09:01:14(796)][I]        On Remote UserCameraControl(dwUserId:-13, bOpen:1)
[2016-12-12 09:01:14(846)][I]        video codec init:codec:1, 15fps, 320x240, bitrate:90kbps, quality:3, preset:3, gop:30, handle:3
[2016-12-12 09:01:14(848)][I]        User(-12) record video stream parameter: codec:1, 320x240, 15fps
[2016-12-12 09:01:14(870)][I]        User(-12) record init successed! filepath:Stream Record
[2016-12-12 09:01:14(882)][I]        On Remote UserSpeakControl(dwUserId:-13, bOpen:1)
[2016-12-12 09:01:16(560)][I]        Message        OnP2PConnectState(userid=-13, state=1)
[2016-12-12 09:01:19(758)][I]        Message        OnP2PConnectState(userid=-13, state=3)
[2016-12-12 09:01:19(828)][I]        userid(-13) audio decode, codec:11, 1 channel, 16000Hz
[2016-12-12 09:01:21(014)][I]        userid(-13) video decode, codec:1, 320x240, delay:0ms
[2016-12-12 09:01:22(618)][I]        Invoke        SnapShot(-13, 0x0, 0)=0
[2016-12-12 09:01:22(686)][I]        Prepare create record file:C:\PROGRA~2\BAIRUI~1\ANYCHA~1\temp\snapshot\2016-12-12\09-01-22-681_android1_28.jpg, dwFlags:0x0
[2016-12-12 09:01:22(769)][I]        Invoke        TransFile(dwUserid=-1, dwTaskId:0, PathName:0)=710
[2016-12-12 09:01:31(522)][I]        Invoke        VideoCallControl(EventType:4, UserId:-13, ErrorCode:0, dwFlags:0, dwParam:0, UserStr=0
[2016-12-12 09:01:31(562)][I]        Message        OnVideoCallEvent(EventType:4, UserId:-13, ErrorCode:0, dwFlags:0x0, dwParam:0
[2016-12-12 09:01:31(574)][I]        Invoke        StreamRecordCtrlEx(-1, 0, 0x1837, 0, LCL)=0
[2016-12-12 09:01:31(740)][I]        Invoke        LeaveRoom(roomid=1)        Elapse:157 ms
[2016-12-12 09:01:31(740)][I]        Invoke        UserCameraControl(userid=-13, bOpen=0, stream=0)
[2016-12-12 09:01:31(790)][I]        Invoke        UserSpeakControl(userid=-13,bOpen=0)
[2016-12-12 09:01:31(806)][I]        Invoke        ObjectControl(objecttype:6, objectid:-12, ctrlcode:604, params:0, 0, 0, 0) = 0
[2016-12-12 09:01:32(206)][I]        socket error, disconnected by peer!, bTcp(1) - userid(-13)
[2016-12-12 09:01:32(206)][I]        OnSocketClose, index(3)-errorcode(0-183), flags:0x10481, bTcp(1),userid(-13), list:0



录制到服务器的日志如上,为什么录制不到服务器呢???????
作者: 佰锐科技-邵光清    时间: 2016-12-12 09:23
LCL5555555 发表于 2016-12-12 09:07
[2016-12-12 09:00:40(978)]        ---------------------------AnyChat Platform Core SDK Client Log-------- ...

你好,录像服务器是否成功启动了?请将录像服务器的日志发上来分析。
作者: LCL5555555    时间: 2016-12-12 09:27
佰锐科技-邵光清 发表于 2016-12-12 09:23
你好,录像服务器是否成功启动了?请将录像服务器的日志发上来分析。

2016-12-12 09:06:30(611)]        Load libbrservernetlayer.so success!(V6.1, Build time:Jun 30 2016 15:26:22)
[2016-12-12 09:06:30(623)]        Net check time: 5s, timeout time: 20s
[2016-12-12 09:06:30(624)]        Start TCP Server Successed(port=8906)!
[2016-12-12 09:06:30(624)]        Start UDP Server Successed(port=8907)!
[2016-12-12 09:06:30(624)]        AnyChat IPC Filter Plus Init, Build Time:Jun 30 2016 15:26:38
[2016-12-12 09:06:30(624)]        Load SDK Filter Plus:libipcfilterplus.so Success, ver:SDK Filter Plus (IPC), for Linux V6.1
[2016-12-12 09:06:30(624)]        IPCFilterPlus listen port:8900
[2016-12-12 09:06:30(633)]        Start Server At Demo Mode!
[2016-12-12 09:06:31(153)]        Successful communicate with the business server!
[2016-12-12 09:06:31(612)]        Successful communicate with the record server!(127.0.0.1:39381, id:-1)
[2016-12-12 09:08:57(648)]        Record server(127.0.0.1:39381) disconnect! (errorcode:100, param:11)
[2016-12-12 09:09:03(150)]        Successful communicate with the record server!(127.0.0.1:59896, id:-1)
[2016-12-12 09:13:09(807)]        Received start server record command, userid:-2, flags:0x1837
[2016-12-12 09:13:32(459)]        Received stop server record command, userid:-2
[2016-12-12 09:13:32(499)]        Error, OnServerRecordFinish, RelativePathName is NULL, user(-2) record task info!(elapse:0, flags:0x1837)
作者: 佰锐科技-邵光清    时间: 2016-12-12 09:32
LCL5555555 发表于 2016-12-12 09:27
2016-12-12 09:06:30(611)]        Load libbrservernetlayer.so success!(V6.1, Build time:Jun 30 2016 15:26: ...

请将录像服务器的配置文件ini发上来看看。
作者: LCL5555555    时间: 2016-12-12 09:41
佰锐科技-邵光清 发表于 2016-12-12 09:32
请将录像服务器的配置文件ini发上来看看。

[User Settings]
VideoCapture=1-Lenovo USB2.0 UVC Camera
AudioCapture=1-麦克风 (Lenovo USB2.0 Audio)
AudioPlayback=
AudioCapMode=0

这是客服端的INI,
[base settings]
serveripaddr                   = 127.0.0.1
serverudpport                  = 8907
recordrootdir                  = record
recordrooturl                  =
servercallbackpathtype         = 1
clientcallbackpathtype         = 2
streambuffertime               = 10000
tcplistenport                  = 8928
udpserviceport                 = 8928

[cluster settings]
rootserveripaddr1              = 127.0.0.1
rootserverport1                = 8910
internetipaddr1                =
internettcpport                = 0
internetudpport                = 0
serviceguid                    = 56C84C9C-FEDC-1942-BEDE-BF75C4118EA6
versionguid                    = 00000000-0000-0000-0000-000000000000
coreserveraddr                 = 127.0.0.1
coreserverport                 = 8906
machineguid                    = 00000000-0000-0000-0000-000000000000
rootserverpriority1            = 0

[debug settings]
debuglevel                     = 3
debugflags                     = 0

这是服务器的配置
作者: 佰锐科技-邵光清    时间: 2016-12-12 09:49
LCL5555555 发表于 2016-12-12 09:41
VideoCapture=1-Lenovo USB2.0 UVC Camera
AudioCapture=1-麦克风 (Lenovo USB2.0 Audio)
AudioPlayb ...

应该是录像服务器启动有不对的地方,这是正常的ini文件,请下载并放到bin/recordserver目录替换旧的,再重启anychatrecordserver。

anychatrecordserver.rar

412 Bytes, 下载次数: 11

录像服务器配置文件


作者: LCL5555555    时间: 2016-12-12 10:00
佰锐科技-邵光清 发表于 2016-12-12 09:49
应该是录像服务器启动有不对的地方,这是正常的ini文件,请下载并放到bin/recordserver目录替换旧的,再 ...

[2016-12-12 09:59:02(048)]        Received start server record command, userid:-10, flags:0x1837
[2016-12-12 09:59:25(842)]        Received stop server record command, userid:-10
[2016-12-12 09:59:25(898)]        Error, OnServerRecordFinish, RelativePathName is NULL, user(-10) record task info!(elapse:0, flags:0x1837)

还是错误,这是日志
作者: LCL5555555    时间: 2016-12-12 10:02
LCL5555555 发表于 2016-12-12 10:00
[2016-12-12 09:59:02(048)]        Received start server record command, userid:-10, flags:0x1837
[2016-1 ...

你有QQ之类的即时聊天吗?这个问题困扰我好久了,想跟你仔细聊聊
作者: 佰锐科技-邵光清    时间: 2016-12-12 10:15
LCL5555555 发表于 2016-12-12 10:02
你有QQ之类的即时聊天吗?这个问题困扰我好久了,想跟你仔细聊聊

请将anychatrecordserver的日志发来分析,谢谢
作者: LCL5555555    时间: 2016-12-12 10:19
佰锐科技-邵光清 发表于 2016-12-12 10:15
请将anychatrecordserver的日志发来分析,谢谢

[2016-12-09 19:18:09(165)]        AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016-12-09 19:18:09(165)]        Record Root Directory: /home/dave/anychat/anychatcoresdk_linux_x64_r5596/bin/recordserver/record/
[2016-12-09 19:18:09(165)]        Record Stream Buffer Time: 10000 ms
[2016-12-09 19:18:09(165)]        DebugLevel:3, DebugFlags:0x0
[2016-12-09 19:18:09(165)]        Ready to connect anychatcoreserver  127.0.0.1(8907)....
[2016-12-09 19:18:09(166)]        Load libmediautil.so success!(V6.1 Build Time:Jun 30 2016 15:25:03)
[2016-12-09 19:18:09(166)]        Start cluster bus connect: 127.0.0.1:8910
[2016-12-09 19:18:10(170)]        Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-09 19:18:10(170)]        Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
[2016-12-12 09:05:47(296)]        Lost the connection to the server(errorcode:100, param:10), ready to reconnect...
[2016-12-12 09:05:47(306)]        Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:06:31(612)]        Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
[2016-12-12 09:09:02(146)]        AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016-12-12 09:09:02(146)]        Record Root Directory: /home/dave/anychat/anychatcoresdk_linux_x64_r5596/bin/recordserver/record/
[2016-12-12 09:09:02(146)]        Record Stream Buffer Time: 10000 ms
[2016-12-12 09:09:02(146)]        DebugLevel:3, DebugFlags:0x0
[2016-12-12 09:09:02(146)]        Ready to connect anychatcoreserver  127.0.0.1(8907)....
[2016-12-12 09:09:02(146)]        Load libmediautil.so success!(V6.1 Build Time:Jun 30 2016 15:25:03)
[2016-12-12 09:09:02(146)]        Start cluster bus connect: 127.0.0.1:8910
[2016-12-12 09:09:03(148)]        Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:09:03(150)]        Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
[2016-12-12 09:57:54(752)]        AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016-12-12 09:57:54(752)]        Record Root Directory: /home/dave/anychat/anychatcoresdk_linux_x64_r5596/bin/recordserver/record/
[2016-12-12 09:57:54(752)]        Record Stream Buffer Time: 10000 ms
[2016-12-12 09:57:54(752)]        DebugLevel:4, DebugFlags:0x1
[2016-12-12 09:57:54(752)]        Ready to connect anychatcoreserver  127.0.0.1(8907)....
[2016-12-12 09:57:54(752)]        Load libmediautil.so success!(V6.1 Build Time:Jun 30 2016 15:25:03)
[2016-12-12 09:57:55(753)]        Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:57:55(762)]        Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
作者: admin    时间: 2016-12-12 10:37
AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46

亲,把录像、核心都升级到最新的版本,看问题是否依然存在?新版本针对录像服务器做了大量的优化工作。
作者: 佰锐科技-邵光清    时间: 2016-12-12 10:38
LCL5555555 发表于 2016-12-12 10:19
[2016-12-09 19:18:09(165)]        AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016 ...

请将bin/recordserver/log目录下的anychatrecorddetail_20161212.log发上来一下,谢谢
作者: LCL5555555    时间: 2016-12-12 10:44
佰锐科技-邵光清 发表于 2016-12-12 10:38
请将bin/recordserver/log目录下的anychatrecorddetail_20161212.log发上来一下,谢谢

[2016-12-12 09:05:47(296)]      Lost the connection to the server(errorcode:100, param:10), ready to reconnect...
[2016-12-12 09:05:47(306)]      Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:06:31(612)]      Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
[2016-12-12 09:09:02(146)]      AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016-12-12 09:09:02(146)]      Record Root Directory: /home/dave/anychat/anychatcoresdk_linux_x64_r5596/bin/recordserver/record/
[2016-12-12 09:09:02(146)]      Record Stream Buffer Time: 10000 ms
[2016-12-12 09:09:02(146)]      DebugLevel:3, DebugFlags:0x0
[2016-12-12 09:09:02(146)]      Ready to connect anychatcoreserver  127.0.0.1(8907)....
[2016-12-12 09:09:02(146)]      Load libmediautil.so success!(V6.1 Build Time:Jun 30 2016 15:25:03)
[2016-12-12 09:09:02(146)]      Start cluster bus connect: 127.0.0.1:8910
[2016-12-12 09:09:03(148)]      Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:09:03(150)]      Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
[2016-12-12 09:57:54(752)]      AnyChat Record Server Init,V6.1, Build Time:Jun 30 2016 15:26:46
[2016-12-12 09:57:54(752)]      Record Root Directory: /home/dave/anychat/anychatcoresdk_linux_x64_r5596/bin/recordserver/record/
[2016-12-12 09:57:54(752)]      Record Stream Buffer Time: 10000 ms
[2016-12-12 09:57:54(752)]      DebugLevel:4, DebugFlags:0x1
[2016-12-12 09:57:54(752)]      Ready to connect anychatcoreserver  127.0.0.1(8907)....
[2016-12-12 09:57:54(752)]      Load libmediautil.so success!(V6.1 Build Time:Jun 30 2016 15:25:03)
[2016-12-12 09:57:55(753)]      Try connect to anychatcoreserver(127.0.0.1:8907)...
[2016-12-12 09:57:55(762)]      Successfully connect to the anychatcoreserver(127.0.0.1:8907)!
作者: 佰锐科技-邵光清    时间: 2016-12-12 10:53
LCL5555555 发表于 2016-12-12 10:44
[2016-12-12 09:05:47(296)]      Lost the connection to the server(errorcode:100, param:10), ready  ...

你好,把录像、核心都升级到最新的版本可以解决这个问题;
作者: LCL5555555    时间: 2016-12-12 11:09
佰锐科技-邵光清 发表于 2016-12-12 10:53
你好,把录像、核心都升级到最新的版本可以解决这个问题;

真的,已搞定




欢迎光临 AnyChat技术支持论坛 (http://bbs.anychat.cn/) Powered by Discuz! X3