Video player giving a timeout error

expo player keeps giving me fatal exoplayer errors,

Encountered fatal error during playback: Player error.java.net.socketTimeoutException:timeout

<VideoPlayer
                            videoProps={{
                                shouldPlay: true,
                                resizeMode: Video.RESIZE_MODE_CONTAIN,
                                source: {
                                    uri: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',
                                },
                                onError: this._onError()
                            }}
                            volume={1.0}
                            isMuted={false}
                            isPortrait={false}
                            playFromPositionMillis={0}
                        />

when i try to play online videos. any help on how to fix this or an idea of what to do about it?!

Hey @cedjustin,

Is this only happening on an emulator or a physical device as well? Also, are you attempting to log the error via your function in onError?

Cheers,
Adam

same here,

Did you managed to fix this?