Firefox Mac H.264 support
-
FYI, Firefox for the Mac has supported H.264 in its native video tag since version 35, so you can disable Flash fallback in those cases.
In case anyone is wondering how to do it manually, below are the two lines I commented out and replaced in sh5vp-functions.php:
//else if ($bd->isFirefox() && ($bd->versionFirefox() < 21 || $bd->isMac()) && $mp4 && !($ogg || $webm)) { else if ($bd->isFirefox() && ($bd->versionFirefox() < 21 || ($bd->versionFirefox() < 35 && $bd->isMac())) && $mp4 && !($ogg || $webm)) {//if ($bd->versionFirefox() >= 21 && !$bd->isMac()) { if ( ($bd->versionFirefox() >= 21 && !$bd->isMac()) || ($bd->versionFirefox() >= 35 && $bd->isMac()) ) {
The topic ‘Firefox Mac H.264 support’ is closed to new replies.