¿Alguien puede recomendar un buen módulo de Drupal para gestionar / vídeos que muestran

drupal.stackexchange https://drupal.stackexchange.com/questions/287

  •  16-10-2019
  •  | 
  •  

Pregunta

Me gustaría armar una galería de video en mi sitio web y estoy preguntando si hay módulos de Drupal existentes para gestionar eso. Estoy usando Drupal 6 y lo más probable es que los vídeos estarán alojados en YouTube.

Lo ideal sería que me gustaría para organizarlas en álbumes de actualidad en el que cada video puede ser anotado con una descripción de los videos.

Gracias.

¿Fue útil?

Solución

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'.

Otros consejos

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a drupal.stackexchange
scroll top