64850858
2021-07-16 89a9ab4534f10a224f70e546db838423e84a1965
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommander.java
@@ -3,6 +3,8 @@
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
import com.genersoft.iot.vmp.media.zlm.dto.IMediaServerItem;
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
/**    
 * @Description:设备能力接口,用于定义设备的控制、查询能力   
@@ -78,12 +80,19 @@
   boolean frontEndCmd(Device device, String channelId, int cmdCode, int parameter1, int parameter2, int combineCode2);
   
   /**
    * 前端控制指令(用于转发上级指令)
    * @param device      控制设备
    * @param channelId      预览通道
    * @param cmdString      前端控制指令串
    */
   boolean fronEndCmd(Device device, String channelId, String cmdString);
   /**
    * 请求预览视频流
    *
    * @param device  视频设备
    * @param channelId  预览通道
    */
   void playStreamCmd(Device device, String channelId, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   void playStreamCmd(IMediaServerItem mediaServerItem, Device device, String channelId, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   
   /**
    * 请求回放视频流
@@ -93,15 +102,15 @@
    * @param startTime 开始时间,格式要求:yyyy-MM-dd HH:mm:ss
    * @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
    */
   void playbackStreamCmd(Device device, String channelId, String startTime, String endTime, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   void playbackStreamCmd(IMediaServerItem mediaServerItem,Device device, String channelId, String startTime, String endTime, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   
   /**
    * 视频流停止
    * 
    * @param ssrc  ssrc
    */
   void streamByeCmd(String ssrc, SipSubscribe.Event okEvent);
   void streamByeCmd(String ssrc);
   void streamByeCmd(String deviceId, String channelId, SipSubscribe.Event okEvent);
   void streamByeCmd(String deviceId, String channelId);
   /**
    * 语音广播
@@ -110,6 +119,14 @@
    * @param channelId  预览通道
    */
   boolean audioBroadcastCmd(Device device,String channelId);
   /**
    * 语音广播
    *
    * @param device  视频设备
    */
   void audioBroadcastCmd(Device device, SipSubscribe.Event okEvent);
   boolean audioBroadcastCmd(Device device);
   
   /**
    * 音视频录像控制
@@ -273,12 +290,4 @@
    * @return            true = 命令发送成功
    */
   boolean alarmSubscribe(Device device, int expires, String startPriority, String endPriority, String alarmMethod, String alarmType, String startTime, String endTime);
   /**
    * 释放rtpserver
    * @param device
    * @param channelId
    */
    void closeRTPServer(Device device, String channelId);
}