|  |  |  | 
|---|
|  |  |  | private int[] portRangeArray = new int[2]; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int getFreePort(MediaServerItem mediaServerItem, int startPort, int endPort, List<Integer> usedFreelist) { | 
|---|
|  |  |  | if (endPort <= startPort) return -1; | 
|---|
|  |  |  | if (endPort <= startPort) { | 
|---|
|  |  |  | return -1; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (usedFreelist == null) { | 
|---|
|  |  |  | usedFreelist = new ArrayList<>(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | return result; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int createRTPServer(MediaServerItem mediaServerItem, String streamId) { | 
|---|
|  |  |  | public int createRTPServer(MediaServerItem mediaServerItem, String streamId, int ssrc) { | 
|---|
|  |  |  | int result = -1; | 
|---|
|  |  |  | // 查询此rtp server 是否已经存在 | 
|---|
|  |  |  | JSONObject rtpInfo = zlmresTfulUtils.getRtpInfo(mediaServerItem, streamId); | 
|---|
|  |  |  | if (rtpInfo.getInteger("code ") == 0 && rtpInfo.getBoolean("exist")) { | 
|---|
|  |  |  | if (rtpInfo != null && rtpInfo.getInteger("code") == 0 && rtpInfo.getBoolean("exist")) { | 
|---|
|  |  |  | result = rtpInfo.getInteger("local_port"); | 
|---|
|  |  |  | return result; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | param.put("enable_tcp", 1); | 
|---|
|  |  |  | param.put("stream_id", streamId); | 
|---|
|  |  |  | param.put("port", 0); | 
|---|
|  |  |  | param.put("ssrc", ssrc); | 
|---|
|  |  |  | JSONObject openRtpServerResultJson = zlmresTfulUtils.openRtpServer(mediaServerItem, param); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (openRtpServerResultJson != null) { | 
|---|
|  |  |  | 
|---|
|  |  |  | * 调用zlm RESTFUL API —— startSendRtp | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public JSONObject startSendRtpStream(MediaServerItem mediaServerItem, Map<String, Object>param) { | 
|---|
|  |  |  | Boolean result = false; | 
|---|
|  |  |  | JSONObject jsonObject = zlmresTfulUtils.startSendRtp(mediaServerItem, param); | 
|---|
|  |  |  | if (jsonObject == null) { | 
|---|
|  |  |  | logger.error("RTP推流失败: 请检查ZLM服务"); | 
|---|
|  |  |  | } else if (jsonObject.getInteger("code") == 0) { | 
|---|
|  |  |  | result= true; | 
|---|
|  |  |  | logger.info("RTP推流成功[ {}/{} ],{}->{}:{}, " ,param.get("app"), param.get("stream"), jsonObject.getString("local_port"), param.get("dst_url"), param.get("dst_port")); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | logger.error("RTP推流失败: {}, 参数:{}",jsonObject.getString("msg"),JSONObject.toJSON(param)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return jsonObject; | 
|---|
|  |  |  | return zlmresTfulUtils.startSendRtp(mediaServerItem, param); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 调用zlm RESTFUL API —— startSendRtpPassive | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public JSONObject startSendRtpPassive(MediaServerItem mediaServerItem, Map<String, Object>param) { | 
|---|
|  |  |  | return zlmresTfulUtils.startSendRtpPassive(mediaServerItem, param); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * 查询待转推的流是否就绪 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Boolean isStreamReady(MediaServerItem mediaServerItem, String app, String streamId) { | 
|---|
|  |  |  | JSONObject mediaInfo = zlmresTfulUtils.getMediaInfo(mediaServerItem, app, "rtmp", streamId); | 
|---|
|  |  |  | JSONObject mediaInfo = zlmresTfulUtils.getMediaInfo(mediaServerItem, app, "rtsp", streamId); | 
|---|
|  |  |  | return (mediaInfo.getInteger("code") == 0 && mediaInfo.getBoolean("online")); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|