欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 国际 > LiveKit部署

LiveKit部署

2025/4/3 10:53:30 来源:https://blog.csdn.net/LvWeijie941/article/details/140958397  浏览:    关键词:LiveKit部署

LiveKit私有化部署

  1. livekit简介
    LiveKit 是一个实时平台,使开发人员能够在他们的应用程序中构建视频、语音和数据功能。 它基于 WebRTC 构建,支持广泛的前端和后端平台。
  2. 部署
    参考官方文档: https://docs.livekit.io/home/self-hosting/local/
  3. 下载安装物料:
curl -sSL https://get.livekit.io | bash
  1. 编写配置文件:livekit.yaml
#  服务端口
port: 7880
rtc:udp_port: 7882tcp_port: 7881# rtc 是使用内网 所以 用falseuse_external_ip: false# node_ip 部署服务器ipnode_ip: 10.50.103.1enable_loopback_candidate: false
keys:# apiKey: secret 2yJimTMFeF9h15PHEv: Mvi9ZgqGJ3LqwEAcTVvWse3conEyQt92FEKTVERzd
logging:json: falselevel: inforedis:# reids 地址address: 10.50.103.2:6379db: 0
  1. 执行启动命令
livekit-server --config ./livekit.yaml --node-ip=10.50.103.1 --bind 0.0.0.0
  1. 验证部署情况
    浏览器输入:http://10.50.103.1:7880 地址,返回OK即代表成功。
  2. go生成token
安装 Livekit 服务器 SDK
 go get github.com/livekit/server-sdk-go
密钥和配置

在 API 密钥和密钥处创建一个新文件,并使用 API 密钥和密钥创建新文件:development.env

export LIVEKIT_API_KEY=<your API Key>
export LIVEKIT_API_SECRET=<your API Secret>
创建一个返回令牌的端点
// server.go
import ("http""log""time"lksdk "github.com/livekit/server-sdk-go""github.com/livekit/protocol/auth"
)func getJoinToken(room, identity string) string {config = readFile(config)at := auth.NewAccessToken(os.GetEnv("LIVEKIT_API_KEY"), os.GetEnv("LIVEKIT_API_SECRET"))grant := &auth.VideoGrant{RoomJoin: true,Room:     room,}at.AddGrant(grant).SetIdentity(identity).SetValidFor(time.Hour)return at.ToJWT()
}func main() {http.HandleFunc("/getToken", func(w http.ResponseWriter, r *http.Request) {w.write(getJoinToken("my-room", "identity"))})log.Fatal(http.ListenAndServe(":8080", nil))
}
加载环境变量并运行服务器:
$ source development.env
$ go run server.go

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词