| | |
| | | |
| | | private OkHttpClient client; |
| | | |
| | | |
| | | |
| | | public interface RequestCallback{ |
| | | void run(JSONObject response); |
| | | } |
| | |
| | | // 设置连接超时时间 |
| | | httpClientBuilder.connectTimeout(5,TimeUnit.SECONDS); |
| | | // 设置读取超时时间 |
| | | httpClientBuilder.readTimeout(15,TimeUnit.SECONDS); |
| | | httpClientBuilder.readTimeout(10,TimeUnit.SECONDS); |
| | | // 设置连接池 |
| | | httpClientBuilder.connectionPool(new ConnectionPool(16, 5, TimeUnit.MINUTES)); |
| | | if (logger.isDebugEnabled()) { |
| | |
| | | FileOutputStream outStream = new FileOutputStream(snapFile); |
| | | |
| | | outStream.write(Objects.requireNonNull(response.body()).bytes()); |
| | | outStream.flush(); |
| | | outStream.close(); |
| | | } else { |
| | | logger.error(String.format("[ %s ]请求失败: %s %s", url, response.code(), response.message())); |
| | |
| | | return sendPost(mediaServerItem, "closeRtpServer",param, null); |
| | | } |
| | | |
| | | public void closeRtpServer(MediaServerItem mediaServerItem, Map<String, Object> param, RequestCallback callback) { |
| | | sendPost(mediaServerItem, "closeRtpServer",param, callback); |
| | | } |
| | | |
| | | public JSONObject listRtpServer(MediaServerItem mediaServerItem) { |
| | | return sendPost(mediaServerItem, "listRtpServer",null, null); |
| | | } |
| | |
| | | |
| | | public JSONObject startSendRtpPassive(MediaServerItem mediaServerItem, Map<String, Object> param) { |
| | | return sendPost(mediaServerItem, "startSendRtpPassive",param, null); |
| | | } |
| | | |
| | | public JSONObject startSendRtpPassive(MediaServerItem mediaServerItem, Map<String, Object> param, RequestCallback callback) { |
| | | return sendPost(mediaServerItem, "startSendRtpPassive",param, callback); |
| | | } |
| | | |
| | | public JSONObject stopSendRtp(MediaServerItem mediaServerItem, Map<String, Object> param) { |
| | |
| | | sendPost(mediaServerItem, "kick_sessions",param, null); |
| | | } |
| | | |
| | | public void getSnap(MediaServerItem mediaServerItem, String flvUrl, int timeout_sec, int expire_sec, String targetPath, String fileName) { |
| | | public void getSnap(MediaServerItem mediaServerItem, String streamUrl, int timeout_sec, int expire_sec, String targetPath, String fileName) { |
| | | Map<String, Object> param = new HashMap<>(3); |
| | | param.put("url", flvUrl); |
| | | param.put("url", streamUrl); |
| | | param.put("timeout_sec", timeout_sec); |
| | | param.put("expire_sec", expire_sec); |
| | | sendGetForImg(mediaServerItem, "getSnap", param, targetPath, fileName); |
| | |
| | | param.put("stream_id", streamId); |
| | | return sendPost(mediaServerItem, "resumeRtpCheck",param, null); |
| | | } |
| | | |
| | | public JSONObject connectRtpServer(MediaServerItem mediaServerItem, String dst_url, int dst_port, String stream_id) { |
| | | Map<String, Object> param = new HashMap<>(1); |
| | | param.put("dst_url", dst_url); |
| | | param.put("dst_port", dst_port); |
| | | param.put("stream_id", stream_id); |
| | | return sendPost(mediaServerItem, "connectRtpServer",param, null); |
| | | } |
| | | |
| | | public JSONObject updateRtpServerSSRC(MediaServerItem mediaServerItem, String streamId, String ssrc) { |
| | | Map<String, Object> param = new HashMap<>(1); |
| | | param.put("ssrc", ssrc); |
| | | param.put("stream_id", streamId); |
| | | return sendPost(mediaServerItem, "updateRtpServerSSRC",param, null); |
| | | } |
| | | } |