使用来自express的使用GridFSBucket的react-native-video显示视频

时间:2018-05-31 16:19:12

标签: gridfs react-native-video

我在使用react-native-video显示视频时遇到了困难。 服务器正在使用Express,并使用GridFSBucket从mongodb中检索视频。

问题在于: 来自GridFSBucket的视频将不会显示。但是当我尝试将视频放在公共文件夹中时,它会显示出来。

所以,我的猜测是我提供视频的方式有问题。这是来自服务器的代码:

const bucket = new GridFSBucket(db.original(), { bucketName: "fs" });
const fileDetail = await db.original().collection("fs.files").findOne({_id: idObj});
if (isNullOrUndefined(fileDetail)) {
    throw new NoContentException(`asset not found for id ${id}`);
}

const range = req.headers["range"]
if (range && typeof range === "string") {
    const parts = range.replace(/bytes=/, "").split("-");
    const partialstart = parts[0];
    const partialend = parts[1];

    const start = parseInt(partialstart, 10);
    const end = partialend ? parseInt(partialend, 10) : fileDetail.length - 1;
    const chunksize = (end - start) + 1;

    res.writeHead(206, {
        'Accept-Ranges': 'bytes',
        'Content-Length': chunksize,
        'Content-Range': 'bytes ' + start + '-' + end + '/' + fileDetail.length,
        'Content-Type': fileDetail.contentType
    });

    bucket.openDownloadStream(idObj, {start, end}).pipe(res);
} else {
    res.header('Content-Length', fileDetail.length);
    res.header('Content-Type', fileDetail.contentType);

    bucket.openDownloadStream(idObj).pipe(res);
}

提前感谢您的回答^ _ ^

1 个答案:

答案 0 :(得分:0)

我找到了解决方案
这一行:

bucket.openDownloadStream(idObj, {start, end}).pipe(res);

应该是:

bucket.openDownloadStream(idObj, {start, end: end - 1}).pipe(res);