Drupal Video 模块为每个视频添加字段
我们如何为视频模块中的每个视频添加字段? 我需要为每个视频添加标题和说明。 我看到缩略图有一个描述字段,也许我可以为其添加一个标题? 看起来可能需要添加到 video_helper.inc 中?
How can we add fields to each video in the Video module?
I need to add a title and description to each video.
I see there is a Description field for the thumbnail, maybe I can add a title to that?
It looks like It may need to be added to video_helper.inc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视频模块严重依赖于Filefield模块,因此如果您需要在将视频多次上传到单个节点时为其添加标题和描述,那么您必须编辑从Filefield模块扩展的uploadfield模块。
如果您只需要单个视频节点的标题和描述,则可以使用 CCK 字段。
Video module is heavily depends on the Filefield module, so if you need to add title and description to a video when its multiple upload to a single node, then you have to edit the uploadfield module which is extending from Filefield module.
If you want only a title and description for a single video node, you can use CCK field.