将 iPad2 中的视频存储在 Django 模型中
我需要将 iPad2 上拍摄的视频存储在 Django 模型中。存储视频的最佳格式是什么以及 Django 模型字段的类型是什么?
我想使用 HTML5 在网站上显示视频(如果可能,避免使用 Flash)。
I need to store a video taken on iPad2 in a Django model. What is the best format to store the video in and what type of Django model field?
I want to show the video on a website using HTML5 (avoid flash if possible).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其保留为 MPEG-4,并使用 FileField 来存储它。
Keep it in MPEG-4, and use a FileField to store it.
Ogg Theora 和
FileField
。Ogg Theora and
FileField
.