title: LivePlayer

sidebar_label: LivePlayer

实时音视频播放

组件 支持度

微信小程序 H5 ReactNative
✔️ x x

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

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