来自Cloudfront的react-native-video视频点播破折号或hls流

时间:2019-11-10 10:43:33

标签: react-native react-native-video

我在S3上有mpd和m3u8文件,并通过CloudFront分发。当我使用bitmovin.com测试流时,flowplayer.com可以正常工作。 React-native-video组件显示{error:{extra:-214748348, what:1}} onError回调。

1 个答案:

答案 0 :(得分:0)

我将版本降级为4.4.4。它为我工作。 代码示例:

       <Video
            onError={this.onError}
            onBuffer={this.onBuffer} 
            onProgress={this.onProgress}
            type="mp4"
            source={{uri: "http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4"}}
            ref={(ref) => {
              this.player = ref
            }}
            style={{ alignSelf: 'stretch', height: 300 }}
          />