视频的背景音频react-native-video

时间:2018-10-27 18:23:41

标签: react-native react-native-ios react-native-video

我无法获得react-native-video在后台播放mp4文件,它将播放mp3和音频文件,但拒绝继续播放视频。我已将xcode的背景模式设置为启用,并选择了音频,播放和画中画,以及将这些道具也传入

playInBackground={true}
playWhenInactive={true}
ignoreSilentSwitch={'ignore'}

视频而不是音频时是否需要其他配置?

1 个答案:

答案 0 :(得分:2)

尝试以下代码:

<Video
    source={{uri: 'http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4'}}
    style={{ width: 400, height: 400}}
    muted={false}
    repeat={false}
    resizeMode={"cover"}
    volume={1.0}
    rate={1.0}
    ignoreSilentSwitch={"ignore"}
    playWhenInactive={true}
    playInBackground={true}
  />

不仅要从Xcode开始执行下面的步骤,还要从React-Native packager运行项目。

Capabilities中设置Xcode

enter image description here