| | |
| | | import com.genersoft.iot.vmp.conf.MediaServerConfig;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.Device;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
| | |
|
| | | /**
|
| | | * @Description:视频设备数据存储接口
|
| | |
| | |
|
| | | Map<String, StreamInfo> queryPlayByDeviceId(String deviceId);
|
| | |
|
| | | boolean startPlayBlack(StreamInfo streamInfo);
|
| | | boolean startPlayback(StreamInfo streamInfo);
|
| | |
|
| | | boolean stopPlayBlack(StreamInfo streamInfo);
|
| | | boolean stopPlayback(StreamInfo streamInfo);
|
| | |
|
| | | StreamInfo queryPlayBlackByDevice(String deviceId, String channelId);
|
| | | StreamInfo queryPlaybackByDevice(String deviceId, String channelId);
|
| | |
|
| | | StreamInfo queryPlayBlackBySSRC(String ssrc);
|
| | | StreamInfo queryPlaybackBySSRC(String ssrc);
|
| | |
|
| | | /**
|
| | | * 更新或添加上级平台
|
| | | * @param parentPlatform
|
| | | */
|
| | | boolean updateParentPlatform(ParentPlatform parentPlatform);
|
| | |
|
| | | /**
|
| | | * 删除上级平台
|
| | | * @param parentPlatform
|
| | | */
|
| | | boolean deleteParentPlatform(ParentPlatform parentPlatform);
|
| | |
|
| | |
|
| | | /**
|
| | | * 分页获取上级平台
|
| | | * @param page
|
| | | * @param count
|
| | | * @return
|
| | | */
|
| | | public PageResult<ParentPlatform> queryParentPlatformList(int page, int count);
|
| | |
|
| | | /**
|
| | | * 获取上级平台
|
| | | * @param platformGbId
|
| | | * @return
|
| | | */
|
| | | public ParentPlatform queryParentPlatById(String platformGbId);
|
| | | }
|