| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.genersoft.iot.vmp.service;
- import com.alibaba.fastjson2.JSONObject;
- import com.genersoft.iot.vmp.common.StreamInfo;
- import com.genersoft.iot.vmp.conf.exception.ServiceException;
- import com.genersoft.iot.vmp.gb28181.bean.Device;
- import com.genersoft.iot.vmp.gb28181.bean.InviteStreamCallback;
- import com.genersoft.iot.vmp.gb28181.bean.InviteStreamInfo;
- import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
- import com.genersoft.iot.vmp.media.zlm.ZlmHttpHookSubscribe;
- import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
- import com.genersoft.iot.vmp.service.bean.InviteTimeOutCallback;
- import com.genersoft.iot.vmp.service.bean.PlayBackCallback;
- import com.genersoft.iot.vmp.service.bean.SSRCInfo;
- import javax.sip.InvalidArgumentException;
- import javax.sip.SipException;
- import java.text.ParseException;
- /**
- * 点播处理
- */
- public interface IPlayService {
- void onPublishHandlerForPlay(MediaServerItem mediaServerItem, JSONObject resonse, String deviceId, String channelId);
- void play(MediaServerItem mediaServerItem, SSRCInfo ssrcInfo, Device device, String channelId,
- ZlmHttpHookSubscribe.Event hookEvent, SipSubscribe.Event errorEvent,
- InviteTimeOutCallback timeoutCallback);
- void play(MediaServerItem mediaServerItem, String deviceId, String channelId, ZlmHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent, Runnable timeoutCallback);
- MediaServerItem getNewMediaServerItem(Device device);
- /**
- * 获取包含assist服务的节点
- */
- MediaServerItem getNewMediaServerItemHasAssist(Device device);
- void onPublishHandlerForDownload(InviteStreamInfo inviteStreamInfo, String deviceId, String channelId, String toString);
- void playBack(String deviceId, String channelId, String startTime, String endTime, InviteStreamCallback infoCallBack, PlayBackCallback playBackCallback);
- void playBack(MediaServerItem mediaServerItem, SSRCInfo ssrcInfo, String deviceId, String channelId, String startTime, String endTime, InviteStreamCallback infoCallBack, PlayBackCallback hookCallBack);
- void zlmServerOffline(String mediaServerId);
- void download(String deviceId, String channelId, String startTime, String endTime, int downloadSpeed, InviteStreamCallback infoCallBack, PlayBackCallback playBackCallback);
- void download(MediaServerItem mediaServerItem, SSRCInfo ssrcInfo,String deviceId, String channelId, String startTime, String endTime, int downloadSpeed, InviteStreamCallback infoCallBack, PlayBackCallback hookCallBack);
- StreamInfo getDownLoadInfo(String deviceId, String channelId, String stream);
- void zlmServerOnline(String mediaServerId);
- void pauseRtp(String streamId) throws ServiceException, InvalidArgumentException, ParseException, SipException;
- void resumeRtp(String streamId) throws ServiceException, InvalidArgumentException, ParseException, SipException;
- }
|