You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
442 B
18 lines
442 B
namespace Cis.Application.Core.Component.ZLMediaKit;
|
|
|
|
public interface IZlmServer
|
|
{
|
|
#region Base Method
|
|
|
|
public Task<StreamConnInfo> AddStreamProxy(string stream, string rtspUrl);
|
|
|
|
public Task<bool> DelStreamProxy(string stream);
|
|
|
|
public Task<object> GetMediaList(string stream);
|
|
|
|
public Task<bool> IsMediaOnline(string stream);
|
|
|
|
public StreamConnInfo GetStreamConnInfo(string stream);
|
|
|
|
#endregion Base Method
|
|
}
|