title: LivePusher

sidebar_label: LivePusher

实时音视频录制

组件 支持度

微信小程序 H5 ReactNative
✔️ x x

小程序全部支持,属性参考live-pusher。属性值请改写为驼峰式命名。

  1. import Taro, { Component } from '@tarojs/taro'
  2. // 引入 LivePusher 组件
  3. import { LivePusher } from '@tarojs/components'
  4. class App extends Components {
  5. render () {
  6. return (
  7. <LivePusher url='url' mode='RTC' autopush />
  8. )
  9. }
  10. }