新增 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,26 @@
namespace SHH.MjpegPlayer
{
/// <summary>
/// 静态参数集合
/// </summary>
public class MjpegStatics
{
/// <summary>
/// 配置项
/// </summary>
public static MjpegConfig Cfg { get; set; }
= new MjpegConfig();
/// <summary>
/// 会话集合
/// </summary>
public static MjpegSessions Sessions { get; private set; }
= new MjpegSessions();
/// <summary>
/// 图片通道集合
/// </summary>
public static ImageChannels ImageChannels { get; private set; }
= new ImageChannels();
}
}