我正在使用 react-native-video 包来获取视频播放器,我可以在其中播放我的 youtube 视频。
我试过了,但只有一个空白空间而不是视频播放器。
import Video from 'react-native-video';
<Video source={{uri: 'https://www.youtube.com/watch?v=Gh2FaDqZp2g'}}
ref={(ref) => {
this.player = ref
}}
onBuffer={this.onBuffer}
onEnd={this.onEnd}
onError={this.videoError}
style={styles.backgroundVideo} />
风格:
backgroundVideo: {
height:300,
width:'100%',
}