| | |
| | | import com.alibaba.fastjson2.JSON; |
| | | import com.alibaba.fastjson2.JSONArray; |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.genersoft.iot.vmp.common.CommonCallback; |
| | | import com.genersoft.iot.vmp.conf.UserSetting; |
| | | import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem; |
| | | import com.genersoft.iot.vmp.media.zlm.dto.*; |
| | |
| | | return result; |
| | | } |
| | | |
| | | public int createRTPServer(MediaServerItem mediaServerItem, String streamId, int ssrc, Integer port) { |
| | | /** |
| | | * 开启rtpServer |
| | | * @param mediaServerItem zlm服务实例 |
| | | * @param streamId 流Id |
| | | * @param ssrc ssrc |
| | | * @param port 端口, 0/null为使用随机 |
| | | * @param reUsePort 是否重用端口 |
| | | * @param tcpMode 0/null udp 模式,1 tcp 被动模式, 2 tcp 主动模式。 |
| | | * @return |
| | | */ |
| | | public int createRTPServer(MediaServerItem mediaServerItem, String streamId, int ssrc, Integer port, Boolean reUsePort, Integer tcpMode) { |
| | | int result = -1; |
| | | // 查询此rtp server 是否已经存在 |
| | | JSONObject rtpInfo = zlmresTfulUtils.getRtpInfo(mediaServerItem, streamId); |
| | |
| | | JSONObject jsonObject = zlmresTfulUtils.closeRtpServer(mediaServerItem, param); |
| | | if (jsonObject != null ) { |
| | | if (jsonObject.getInteger("code") == 0) { |
| | | return createRTPServer(mediaServerItem, streamId, ssrc, port); |
| | | return createRTPServer(mediaServerItem, streamId, ssrc, port, reUsePort, tcpMode); |
| | | }else { |
| | | logger.warn("[开启rtpServer], 重启RtpServer错误"); |
| | | } |
| | |
| | | |
| | | Map<String, Object> param = new HashMap<>(); |
| | | |
| | | param.put("enable_tcp", 1); |
| | | if (tcpMode == null) { |
| | | tcpMode = 0; |
| | | } |
| | | param.put("tcp_mode", tcpMode); |
| | | param.put("stream_id", streamId); |
| | | if (reUsePort != null) { |
| | | param.put("re_use_port", reUsePort?"1":"0"); |
| | | } |
| | | // 推流端口设置0则使用随机端口 |
| | | if (port == null) { |
| | | param.put("port", 0); |
| | |
| | | } |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | public void closeRtpServer(MediaServerItem serverItem, String streamId, CommonCallback<Boolean> callback) { |
| | | if (serverItem == null) { |
| | | callback.run(false); |
| | | return; |
| | | } |
| | | Map<String, Object> param = new HashMap<>(); |
| | | param.put("stream_id", streamId); |
| | | zlmresTfulUtils.closeRtpServer(serverItem, param, jsonObject -> { |
| | | if (jsonObject != null ) { |
| | | if (jsonObject.getInteger("code") == 0) { |
| | | callback.run(jsonObject.getInteger("hit") == 1); |
| | | return; |
| | | }else { |
| | | logger.error("关闭RTP Server 失败: " + jsonObject.getString("msg")); |
| | | } |
| | | }else { |
| | | // 检查ZLM状态 |
| | | logger.error("关闭RTP Server 失败: 请检查ZLM服务"); |
| | | } |
| | | callback.run(false); |
| | | }); |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | public void closeAllSendRtpStream() { |
| | | |
| | | } |
| | | |
| | | public Boolean updateRtpServerSSRC(MediaServerItem mediaServerItem, String streamId, String ssrc) { |
| | | boolean result = false; |
| | | JSONObject jsonObject = zlmresTfulUtils.updateRtpServerSSRC(mediaServerItem, streamId, ssrc); |
| | | if (jsonObject == null) { |
| | | logger.error("[更新RTPServer] 失败: 请检查ZLM服务"); |
| | | } else if (jsonObject.getInteger("code") == 0) { |
| | | result= true; |
| | | logger.info("[更新RTPServer] 成功"); |
| | | } else { |
| | | logger.error("[更新RTPServer] 失败: {}, streamId:{},ssrc:{}->\r\n{}",jsonObject.getString("msg"), |
| | | streamId, ssrc, jsonObject); |
| | | } |
| | | return result; |
| | | } |
| | | } |