lawrencehj
2021-03-26 c5a05c15df6c01602f259a49ff470fa996579b0b
src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMRESTfulUtils.java
@@ -73,6 +73,10 @@
        return sendPost("getMediaList",param);
    }
    public JSONObject getMediaList(){
        return sendPost("getMediaList",null);
    }
    public JSONObject getMediaInfo(String app, String schema, String stream){
        Map<String, Object> param = new HashMap<>();
        param.put("app",app);
@@ -119,4 +123,12 @@
    public JSONObject closeRtpServer(Map<String, Object> param) {
        return sendPost("closeRtpServer",param);
    }
    public JSONObject startSendRtp(Map<String, Object> param) {
        return sendPost("startSendRtp",param);
    }
    public JSONObject stopSendRtp(Map<String, Object> param) {
        return sendPost("stopSendRtp",param);
    }
}