You are here

function scald_video_file_mimetype_mapping_alter in Scald: Media Management made easy 7

Implements hook_file_mimetype_mapping_alter().

File

modules/providers/scald_video/scald_video.module, line 157
Scald Video is a Scald Atom Provider for video files.

Code

function scald_video_file_mimetype_mapping_alter(&$mapping) {
  if (!in_array('video/webm', $mapping['mimetypes'])) {
    $mapping['mimetypes'][] = 'video/webm';
    $mapping['extensions']['webm'] = count($mapping['mimetypes']) - 1;
  }
}