Skip to content
Snippets Groups Projects
README.md 5.83 KiB
Newer Older
# Video.js support module 5 for Drupal 8

Video.js is a HTML5-based video player with a built-in Flash fallback for older
browsers. This means that videos can be played on nearly all devices and
operating systems, provided the right codecs are used.

This module is a support module for Video.js. It doesn't contain Video.js
itself, but integrates it with the File, Link and Video modules after you've
installed it.

## New in 8.x-1.x

- Support for Video.js 5.0.x
- Support for subtitle tracks.
- Support for looping, hiding player controls and changing preload behavior.
- Setup above settings for each field and view individually, as well as width
  and height of the player.
- Load the Video.js files from the Video.js CDN - downloading and installing
  the player is no longer necessary!
- Locate the Video.js files using the Libraries API.

## Required dependencies

None

## Optional dependencies

- Drupal core File module
- [Libraries API 2](http://drupal.org/project/libraries)
- [Link](http://drupal.org/project/link)

## Installation

1. Install the Video.js module by copying the sources to a modules directory, 
   such as `sites/all/modules` or `sites/[yoursite]/modules`.
2. Download the Video.js library from http://videojs.com. Extract the module to
   `sites/all/libraries/video-js` and make sure that
   `sites/all/libraries/video-js/video.js` exists.
   NOTE: you can skip this step and use the Video.js version from the
   Video.js Content Delivery Network (CDN).
3. In your Drupal site, enable the module.
4. If not yet created, create a File field for one of your content types at
   Structure -> Content types -> [type] -> Manage fields. Make sure
   the allowed extensions contain only HTML5 video extensions, such as mp4,
   webm, mov and ogv. Use the `Number of values` setting to allow users to
   upload alternative versions of the same video, for instance MP4 and Ogg.
   To allow users to upload a poster image, also allow png, gif or jpg.
5. At the Manage display tab, select `Video.js` for your File field.
6. Create a piece of content with the configured field.
7. Create a poster image and upload the image in the file field field created in
   step #4.

Note: instead of a File field, you also use a Link field from the Link module.
The module detects the type of the file from the extension. If the link
contains no extension, write the mime type (like video/mp4) in the title
field of the link.

## Poster images from a separate field

It is possible to display images uploaded to an image field as the video
poster image. After you added an image field to your content type, edit the
display settings of the Video.js field and specify the image field in the
"Poster image field" setting.

## Installation with the Video module

If you are using the Video module, you can't configure the player at the
`Manage display` tab. Instead, select Video.js at the Players tab of the
Video settings page (admin/config/media/video/players).

## Subtitle tracks

To add subtitles to your video, upload a VTT file to the file field, or
link to a VTT file when using a Link field. Enter the language name or
two-letter code in the description field. Use the English or local language
name.

## Loading Video.js from code

The Video.js module exposes the theme function 'videojs' to write a Video.js
player in code. The theme function has the following variables:

- `items`: Array of playable items. Each item in the array must be an array with
  the following keys:
  - `uri` (required): URI of the file. It must be an audio file, video file,
    image file (for the poster image) or VTT file (for subtitles).
  - `filemime` (required): mime type of the file.
  - `langcode` (vtt only): language code.
  - `label` (vtt only): label of the track.
  - `default` (vtt only): whether the track is selected by default.
  - `charset` (vtt only): the character set of the track.
  - `kind` (vtt only): the kind of track: subtitles, captions, descriptions, 
    chapters or metadata. Default: subtitles.
- `player_id` (required): ID of the player. Must be unique on the page.
- `attributes`: array with the following optional values:
  - `width`: width of the player.
  - `height`: height of the player.
  - `loop`: boolean to loop the video.
  - `hidecontrols`: boolean to hide the player controls.
  - `autoplay`: boolean to start playback on load.
  - `preload`: preload mode. either none, metadata or auto.
- `posterimage_style` (optional): set to the machine name of an image style
  to transform the poster image using that style.

### Example

    echo theme('videojs', array(
      'items' => array(
        array(
          'uri' => 'public://test.mp4',
          'filemime' => 'video/mp4',
        ),
        array(
          'uri' => 'public://test.webm',
          'filemime' => 'video/webm',
        ),
        array(
          'uri' => 'public://test-poster.jpg',
          'filemime' => 'image/jpeg',
        ),
        array(
          'uri' => 'public://test-en.vtt',
          'filemime' => 'text/vtt',
          'langcode' => 'en',
          'description' => 'English',
          'default' => TRUE,
        ),
        array(
          'uri' => 'public://test-nl.vtt',
          'filemime' => 'text/vtt',
          'langcode' => 'nl',
          'description' => 'Nederlands',
        ),
        array(
          'uri' => 'public://test-fy.vtt',
          'filemime' => 'text/vtt',
          'langcode' => 'fy',
          'description' => 'Frysk',
        ),
      ),
      'player_id' => 'test-video',
      'posterimage_style' => 'thumbnail',
      'attributes' => array(
        'width' => 640,
        'height' => 360,
        'loop' => FALSE,
        'autoplay' => TRUE,
        'preload' => 'none',
        'hidecontrols' => FALSE,
      ),
    ));

## Support

- Report bugs for this *Drupal module* at
  <http://drupal.org/project/issues/videojs>.
- Report bugs for the *player* at <https://github.com/videojs/video.js/issues>.