TommyLeng
TommyLeng
# Development guide [Link](https://github.com/go-rod/rod/blob/master/.github/CONTRIBUTING.md) ## Test on local before making the PR ```bash go run ./lib/utils/simple-check ``` I need to capture video, after reading https://github.com/go-rod/rod/pull/614, I try to complete the...
go run . db migrate 20220101100000 go run . db rollback 20220101100000 it will stop further migrate / rollback when it reach the version
It always run tx.Commit(). I think it should handle the error from ExecContext and add tx.Rollback()
我在公司 有一個攝影機,同時推流去 m7s, srs 一直以來 m7s 延遲都是低一點點 但我業務需求,每分鐘需要 錄影 10秒的 影片 我用了 plugin-recording 的 api 錄影, 錄影格式是 mp4,然後儲在 aws s3 過一晚後 m7s 的視頻延遲會增加,比 srs 多了幾秒 在過多一晚又會增加幾秒 是不是因為錄影 api 用了 "PlayBlock...
我目前需要 7x24 无间断 把rtmp 流推去 monibuca, 我发现有时候网络波动,会断线重连,这时候会收到 duplicate publish 的错误 最后我的解决方法是设 kickexist = true 想问问会不会有其他更好的方法,否则的话我先这样设定了 
https://github.com/uptrace/bun/blob/master/model_map.go https://github.com/uptrace/bun/blob/master/model_scan.go According to the https://go.dev/doc/tutorial/database-access We should add ``` if err := rows.Err(); err != nil { } ``` But it is missing in these 2 files