How can i set/modify the currentTime of the video?
For example if I have a button that jumps to +15 seconds, how can I implement that?
Is there a function like 'setProgress' ?
Basically use 'seek' property (number: time in seconds)
source={getVideoSource(props.sourceKey)}
seek={props.seek}
style={styles.fullScreen}
rate={props.rate}
paused={props.paused}
volume={props.volume}
muted={props.muted}
resizeMode={props.resizeMode}
onLoad={props.onLoad}
onProgress={props.onProgress}
onEnd={() => { }}
onSeek={(event) => {console.log('onSeek')}}
repeat={true}
/>
Most helpful comment
Basically use 'seek' property (number: time in seconds)
source={getVideoSource(props.sourceKey)}
seek={props.seek}
style={styles.fullScreen}
rate={props.rate}
paused={props.paused}
volume={props.volume}
muted={props.muted}
resizeMode={props.resizeMode}
onLoad={props.onLoad}
onProgress={props.onProgress}
onEnd={() => { }}
onSeek={(event) => {console.log('onSeek')}}
repeat={true}
/>