ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 最简单的直播推流代码 文件名为index.nvue ~~~ <template> <view> <live-pusher id="livePusher" :url="url" mode="FHD"></live-pusher> <button @click="startLive">开始推流(开始直播)</button> <button @click="stopLive">结束推流</button> </view> </template> <script> export default { data() { return { url: 'rtmp://39.100.248.116/live', enableCamera: false, context: null }; }, onReady() { this.context = uni.createLivePusherContext('livePusher', this); }, methods: { EnableCamera() { this.enableCamera = true; }, startLive() { this.context.start({ success: a => { console.log('livePusher.start:' + JSON.stringify(a)); } }); }, stopLive() { this.context.stop({ success: a => { console.log(JSON.stringify(a)); } }); } } }; </script> ~~~