什么是最好的视频流网站数据库?

时间:2022-04-13 18:55:30

I want to work on video streaming website. But I want to know what will be the best db for video streaming site? I need to help to know about this. Video streaming site like youtube.com, so what will be the best choice ?

我想在视频流网站上工作。但我想知道视频流网站的最佳数据库是什么?我需要帮助了解这一点。视频流网站如youtube.com,那么最佳选择是什么?

Thanks for advance advice ?

感谢您提前咨询?

1 个解决方案

#1


0  

The purpose of a database is to record and relate facts and answer questions. You can certainly capture information about videos in a database, like file name and location, title size, width and height, description, content tags, uploader, access permissions, and so on. A DBMS is an excellent tool for managing all the knowledge you need to make the site work and be useful.

数据库的目的是记录和关联事实并回答问题。您当然可以捕获有关数据库中视频的信息,例如文件名和位置,标题大小,宽度和高度,描述,内容标记,上传者,访问权限等。 DBMS是一个出色的工具,用于管理使站点工作和有用所需的所有知识。

The videos themselves are best served from a file system rather than from a database - most DBMSs are optimized for large sets of small values and don't have dedicated data types or operators for videos, let alone support for modern codecs and advanced video manipulation. In contrast, a LOT of software is available for processing videos stored as files.

视频本身最好是从文件系统而不是从数据库中提供 - 大多数DBMS针对大量小值进行了优化,没有专用的数据类型或视频操作符,更不用说支持现代编解码器和高级视频操作。相比之下,有很多软件可用于处理存储为文件的视频。

#1


0  

The purpose of a database is to record and relate facts and answer questions. You can certainly capture information about videos in a database, like file name and location, title size, width and height, description, content tags, uploader, access permissions, and so on. A DBMS is an excellent tool for managing all the knowledge you need to make the site work and be useful.

数据库的目的是记录和关联事实并回答问题。您当然可以捕获有关数据库中视频的信息,例如文件名和位置,标题大小,宽度和高度,描述,内容标记,上传者,访问权限等。 DBMS是一个出色的工具,用于管理使站点工作和有用所需的所有知识。

The videos themselves are best served from a file system rather than from a database - most DBMSs are optimized for large sets of small values and don't have dedicated data types or operators for videos, let alone support for modern codecs and advanced video manipulation. In contrast, a LOT of software is available for processing videos stored as files.

视频本身最好是从文件系统而不是从数据库中提供 - 大多数DBMS针对大量小值进行了优化,没有专用的数据类型或视频操作符,更不用说支持现代编解码器和高级视频操作。相比之下,有很多软件可用于处理存储为文件的视频。