Skip to content

Commit

Permalink
更新readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chatop committed Jan 6, 2021
1 parent 41531d4 commit df15f3f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class ResToWebHookOnPublish : ResZLMediaKitResponseBase
{
private bool? _enableHls;
private bool? _enableMP4;
private bool? _enableRtxp;
// private bool? _enableRtxp;
private string? _msg;

public bool? EnableHls
Expand All @@ -22,11 +22,11 @@ public bool? EnableMp4
set => _enableMP4 = value;
}

public bool? EnableRtxp
/*public bool? EnableRtxp
{
get => _enableRtxp;
set => _enableRtxp = value;
}
}*/

public string? Msg
{
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
- 支持跨平台特性,已测试操作系统有CentOS,Ubunut,Raspbain(ARM嵌入式树莓派操作系统),Windows10,MacOS Big Sur等操作系统,均可正常使用。
- 提供对ZLMediaKit的集群实现,提供不同服务器、不同操作系统下的ZLMediaKit能保持同一种操作方式与输出规范。






# 项目后续作品,重大升级 AKStream -------> https://github.com/chatop2020/AKStream


# Wiki已开通,具体使用说明请详细参考Wiki中的内容
- https://github.com/chatop2020/StreamNode-GB28181/wiki/StreamNode-GB28181%E4%BB%8B%E7%BB%8D

Expand Down
4 changes: 1 addition & 3 deletions StreamNodeCtrlApis/WebHookApis/MediaServerCtrlApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static ResToWebHookOnPublish OnPublishNew(ReqForWebHookOnPublish req, out
Code = -1,
EnableHls = false,
EnableMp4 = false,
EnableRtxp = false,

Msg = "failed",
};
}
Expand Down Expand Up @@ -203,7 +203,6 @@ public static ResToWebHookOnPublish OnPublishNew(ReqForWebHookOnPublish req, out
Code = -1,
EnableHls = false,
EnableMp4 = false,
EnableRtxp = false,
Msg = "failed",
};
}
Expand Down Expand Up @@ -243,7 +242,6 @@ public static ResToWebHookOnPublish OnPublishNew(ReqForWebHookOnPublish req, out
Code = 0,
EnableHls = false,
EnableMp4 = false,
EnableRtxp = true,
Msg = "success",
};
}
Expand Down

0 comments on commit df15f3f

Please sign in to comment.