Question

I would like to put together a video gallery on my website and am wondering if there are any existing Drupal modules to manage that. I'm using Drupal 6 and most likely the videos will be hosted on YouTube.

Ideally, I would like to arrange them in topical albums in which each video could be annotated with a description of the videos.

Thanks.

Was it helpful?

Solution

Drupal 6: Embedded Media Field. Now has a D7 version too.

This extensible module will create fields for content types that can be used to display video, image, and audio files from various third party providers. When entering the content, the user will simply paste the URL or embed code from the third party, and the module will automatically determine which content provider is being used. When displaying the content, the proper embedding format will be used.

Drupal 7: Media

The Media module provides an extensible framework for managing files and multimedia assets, regardless of whether they are hosted on your own site or a 3rd party site - it is commonly referred to as a 'file browser to the internet'.

OTHER TIPS

The simplest modules to do this task are:

  1. IMCE : IMCE is an image/file uploader and browser that supports personal directories and quota.
  2. WYSIWYG : Allows to use client-side editors to edit content.
  3. CKEditor - WYSIWYG HTML editor: loads faster (the number of files has been reduced, so the browser will perform less HTTP requests) and developers friendly.

Adding content(videos) using these modules will be simple and later css modifications can help in the positioning and look of the gallery.

Actually, a most modern approach to do this in drupal 7 is Module Asset. It has his its own entity Media asset to manage the medias.

It's very flexible since you can create your own types of Media Assets, which are fieldable entities, and has integration with CKEditor module.

Use the combination of CKEditor and Media module.

CKEditor: It provides many HTML editing feature like:

  1. Font formatting: type, size, color, style, bold, italic, etc
  2. Text formatting: alignment, indentation, bullets list, etc
  3. Cut and Paste, Undo and Redo
  4. Link creation
  5. Image insertion, with upload and server browsing support
  6. Table creation and editing (add,delete rows, etc)
  7. Right click context menus support
  8. Complete toolbar customization
  9. CSS support for a better integration in the web site
  10. Lightweight and fast
  11. For web developer it is easy to install and customize
  12. For web users its simply easy to use!
  13. Compatible with Internet Explorer 5+
  14. Automatic browser detection and customization
  15. Integration with ASP, ASP.NET and Javascript

Media: It provides an extensible framework for managing files and multimedia assets, regardless of whether they are hosted on your own site or a 3rd party site. It is a drop-in replacement for the Drupal core upload field with a unified User Interface where editors and administrators can upload, manage, and reuse files and multimedia assets.

Licensed under: CC-BY-SA with attribution
Not affiliated with drupal.stackexchange
scroll top