skip to Main Content

Is there a way to open the video file while it is downloading and watch all that is downloaded, one megabyte or more, using React WinTap?

Is there a way to open the video file while it is downloading and watch all that is downloaded,

2

Answers


  1. If you have direct downloadable link or stream link authentication free like–>
    http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4
    then with this package –> react-native-video

     <Video
           controls = {true}
           source = {
                     {
                       uri: "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4"
                     }
                    }
    
           resizeMode = "contain" />
    

    —–or if the link required authentication then

    <Video
        controls = { true }
        source = {
          {
            uri: `http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4?[params]
            headers: {
              Authorization: `Bearer ${token}`
            },
          }
        }
    
        resizeMode = "contain" />
    
    Login or Signup to reply.
  2. How can I have a stream download link for my clips located in backet storng Google Cloud

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search