| | |
| | | public AjaxResult getRtspConns() { |
| | | return AjaxResult.success(mediaService.rtspconns()); |
| | | } |
| | | @GetMapping("/getRtspSessionById") |
| | | @ApiOperation("按ID查询会话") |
| | | public AjaxResult getRtspSessionById(String sessionId) { |
| | | return AjaxResult.success(mediaService.getRtspSessionById(sessionId)); |
| | | } |
| | | |
| | | @GetMapping("/getPushStreams") |
| | | @ApiOperation("获取推流信息") |
| | | public AjaxResult getPushStreams() { |
| | | return AjaxResult.success(mediaService.getPushStreams()); |
| | | } |
| | | @GetMapping("/getPullStreams") |
| | | @ApiOperation("获取拉流信息") |
| | | public AjaxResult getPullStreams() { |
| | | return AjaxResult.success(mediaService.getPullStreams()); |
| | | } |
| | | } |