Load video to expo video component from url

Hi everyone

How can i load a video from a url like in the example

<Video
  source={{ uri: 'http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4' }}
  rate={1.0}
  volume={1.0}
  isMuted={false}
  resizeMode="cover"
  shouldPlay
  isLooping
  style={{ width: 300, height: 300 }}
/>

I want to be able to upload a video from my computer to a server and then load it from the component

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.