新增 Mjpegplayer 用来播放 Web 流

This commit is contained in:
2026-01-21 19:03:59 +08:00
parent f79cb6e74d
commit c438edfa0d
71 changed files with 4538 additions and 452 deletions

View File

@@ -0,0 +1,17 @@
namespace SHH.MjpegPlayer;
/// <summary>RTMP 推流对象类</summary>
public class RtmpVo
{
/// <summary>算法代码</summary>
public string algCode { get; set; } = string.Empty;
/// <summary>设备ID</summary>
public string deviceId { get; set; } = string.Empty;
/// <summary>设备IP地址</summary>
public string deviceIp { get; set; } = string.Empty;
/// <summary>RTMP 推流地址</summary>
public string rtmp { get; set; } = string.Empty;
}