我正在使用 reactjs 和烧瓶。在获得存储在私有 s3 存储桶中的 .mp4 文件的 torrent 后,我正在尝试使用 webtorrent 在浏览器中显示和播放它。但是视频内容没有加载
这是在 reactjs 中加载和播放 1 GB .mp4 的后续问题,存储在私有 s3 存储桶中。目前,s3 存储桶是公开的。因为私人文件抛出错误。
参考代码 - https://codepen.io/drngke/pen/abNGbEg
const magnet = 'https://datavocal.s3.amazonaws.com/s3outputx.mp4.torrent'
const client = new WebTorrent()
client.add(magnet, (torrent) => {
console.log(torrent.files)
torrent.files[0].appendTo('body')
});
client.on("error", (err) => console.log(err))