企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 最简单的直播推流代码 文件名为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> ~~~