标签:编译 一个 bsp https com img uid 运行 htm
1、安装golang开发环境
https://www.cnblogs.com/eczhou/p/7929693.html
2、livego源码及说明文档
https://github.com/zhoudd1/livego
下载,编译用户工程
go get github.com/gwuhaolin/livego
会报个错
# github.com/gwuhaolin/livego/utils/uid
go/src/github.com/gwuhaolin/livego/utils/uid/uuid.go:9:18: multiple-value uuid.NewV4() in single-value context
将报错文件第9行
id := uuid.NewV4() 改成 id,_ := uuid.NewV4()
进入livego目录编译工程
go build
运行
提供一个rtmp流测试地址 rtmp://live.hkstv.hk.lxdns.com/live/hks
ffplay -i rtmp://live.hkstv.hk.lxdns.com/live/hks
ffmpeg应用手册
http://ffmpeg.org/ffmpeg-all.html#rtmp
标签:编译 一个 bsp https com img uid 运行 htm
原文地址:https://www.cnblogs.com/dong1/p/9574508.html