Fixed Video uploads fail to transcode

Chris D

XenForo developer
Staff member
XFMG 1.1.6 introduced some further support for supporting both FFmpeg versions 2.x and 3.x but there was a small mistake in the code which would cause the FFmpeg command to fail.

We are releasing XFMG 1.1.6a to remedy this, or alternatively you can follow the instructions below.

Open the file library/XenGallery/Helper/Video.php:

Find:
PHP:
$aCodecs = array_flip($this->_actualAacEncoders);

Replace with:
PHP:
$aCodecs = array_reverse($this->_actualAacEncoders);

Alternatively, download version 1.1.6a from your customer area and re-upload the files (upgrading using the XML file is not necessary).
 
Top Bottom