in template_preprocess_videojs, line 21 of videojs.theme.js, I have replaced video/flv => video/x-flv to have an array like this :

<?php
  $codecs = array(
    'video/mp4' => 'video/mp4',
    'video/webm' => 'video/webm',
    'application/octet-stream' => 'video/webm',
    'video/ogg' => 'video/ogg',
    'application/ogg' => 'video/ogg',
    'video/quicktime' => 'video/mp4',
    'video/flv' => 'video/flv',
    // HERE
    'video/x-flv' => 'video/flv',
  );
?>

Because of this line, flv playback doesn't work for me.

Comments

Jorrit’s picture

Status: Active » Closed (duplicate)
Jorrit’s picture

Issue summary: View changes

strong...