- 授权协议: GPL
- 开发语言: Google Go
- 操作系统: Windows
- 软件首页: https://github.com/zhangpeihao/gortmp
- 软件文档: https://github.com/zhangpeihao/gortmp
- 官方下载: https://github.com/zhangpeihao/gortmp
软件介绍
GO语言实现的RTMP库
目前实现了Client模式
Examples:
// To connect FMS server
obConn, err := rtmp.Dial(url, handler, 100)
// To connect
err = obConn.Connect()
// When new stream created, handler event OnStreamCreated() would been called
func (handler *TestOutboundConnHandler) OnStreamCreated(stream rtmp.OutboundStream) {
// To play
err = stream.Play(*streamName, nil, nil, nil)
// Or publish
err = stream.Publish(*streamName, "live")
}
// To publish data
stream.PublishAudioData(data, deltaTimestamp)
// or
stream.PublishVideoData(data, deltaTimestamp)
// or
stream.PublishData(tagHeader.TagType, data, deltaTimestamp)
// You can close stream by
stream.Close()
// You can close connection by
obConn.Close()
计算机程序设计艺术 第2卷 半数值算法(第3版)(英文影印版)
(美)Donald E.Knuth / 清华大学出版社 / 2002-09-01 / 83.0
计算机程序设计艺术:英文版(第2卷 半数值算法),ISBN:9787302058151,作者:(美)Donald E. Knuth著一起来看看 《计算机程序设计艺术 第2卷 半数值算法(第3版)(英文影印版)》 这本书的介绍吧!
