我无法获得react-native-video在后台播放mp4文件,它将播放mp3和音频文件,但拒绝继续播放视频。我已将xcode的背景模式设置为启用,并选择了音频,播放和画中画,以及将这些道具也传入
playInBackground={true}
playWhenInactive={true}
ignoreSilentSwitch={'ignore'}
视频而不是音频时是否需要其他配置?
答案 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
: