如何以字节形式存储视频文件

发布于 2024-11-24 05:57:59 字数 92 浏览 0 评论 0原文

我想将视频文件的字节存储在数据存储中的某个位置。我尝试将它们存储在 sqlite 中,但文件太大。还有什么其他选择。我还希望能够在给定视频文件名称的情况下搜索该字节数组。

I would like to store the bytes of a video file in a datastore somewhere. I have tried storing them in sqlite but the file is too big. what other alternative is there. I want also o be able to search fro that byte array given the name of the video file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-12-01 05:57:59

我强烈建议您将其存储为文件并使用数据库仅存储元数据和对该文件的引用(例如文件名和路径)。这将允许您使用数据库搜索任何元数据,而无需将大量二进制内容转储到数据库中。

I highly recommend that you store it as a file and use database to only store metadata and reference to that file (filename and path for example). That will allow you to search for any metadata using DB without dumping tons of binary content into database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文