Compare commits

...

2 Commits

Author SHA1 Message Date
junleea a92a9b97f0 Merge branch 'refs/heads/feat-video-stream' 2024-12-26 14:13:12 +08:00
junleea 31d28cbff2 添加视频流接口 2024-12-26 14:13:03 +08:00
1 changed files with 6 additions and 1 deletions

View File

@ -412,7 +412,12 @@ func VideoFeed(c *gin.Context) {
// 启动一个协程来监测客户端连接是否关闭,关闭时向 clientClosed 通道发送信号
go func() {
<-c.Request.Context().Done()
//如果clientClosed通道已经关闭不再发送
if _, ok := <-clientClosed; !ok {
return
} else {
clientClosed <- struct{}{}
}
}()
// 查看是否还有其他连接,没有则设置 is_play 为 0