如何以字节形式存储视频文件
我想将视频文件的字节存储在数据存储中的某个位置。我尝试将它们存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我强烈建议您将其存储为文件并使用数据库仅存储元数据和对该文件的引用(例如文件名和路径)。这将允许您使用数据库搜索任何元数据,而无需将大量二进制内容转储到数据库中。
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.