如何使用 React Native 在下载时打开视频(如 TikTok 和 YouTube)

问题描述 投票:0回答:1

有没有办法使用 React WinTap 在下载时打开视频文件并观看所有下载的内容(一兆或更多)?

有没有办法在下载视频文件时打开它并观看所有下载的内容,

react-native react-native-video react-native-fs
1个回答
0
投票

如果您有直接可下载链接或免费流链接验证,例如--> http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4 然后使用这个包 --> react-native-video

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

resizeMode = "contain" /
  >

-----或者如果链接需要身份验证则

< Video
controls = {
  true
}
source = {
  {
    uri: `http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4?[params]
    headers: {
      Authorization: `Bearer ${token}`
    },
  }
}

resizeMode = "contain" /
  >

© www.soinside.com 2019 - 2024. All rights reserved.