我在哪里存储网站的视频文件?
我想创建一个视频上传网站,允许用户上传视频。我需要在哪里存储视频内容,数据库还是网络服务器?
I want to create a video upload site which allows users to upload videos. Where do I need to store the video content, in db or in a webserver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将视频内容存储在某种 Web 服务器或存储服务上(例如 Amazon S3 ),然后将视频的 URL(或其他类型的指针)存储在数据库中。
You'll want to store the video content on some sort of web server or storage service (like Amazon S3), then store the URLs (or some other type of pointer) to the videos in a database.