mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-16 18:47:49 +08:00
20 lines
542 B
Java
Executable File
20 lines
542 B
Java
Executable File
package com.genersoft.iot.vmp.service;
|
|
|
|
import com.genersoft.iot.vmp.media.bean.ResultForOnPublish;
|
|
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
|
|
|
/**
|
|
* 媒体信息业务
|
|
*/
|
|
public interface IMediaService {
|
|
|
|
/**
|
|
* 播放鉴权
|
|
*/
|
|
boolean authenticatePlay(String app, String stream, String callId);
|
|
|
|
ResultForOnPublish authenticatePublish(MediaServer mediaServer, String app, String stream, String params);
|
|
|
|
boolean closeStreamOnNoneReader(String mediaServerId, String app, String stream, String schema);
|
|
}
|