From an earlier post, credit to luca_it.
Instructions:
1) open file \flash\modules\video\inc\functions.inc.php of d7b7
2) locate this text:
function getConverterTmpl($sInputFile, $sSize, $bSound = true, $bRecorded = false)
{
global $sModule;
global $sFfmpegPath;
$sSound = $bRecorded ? " -ar 44100 " : " -acodec copy ";
if(!$bSound) $sSound = " -an ";
$sTmpl = $sFfmpegPath . " -y -i " . $sInputFile . " -r " . getVideoFps() . " -s " . getVideoSize($sSize) . $sSound;
if(getSettingValue($sModule, "sameQuality") == TRUE_VAL) $sTmpl .= "-sameq ";
return $sTmpl;
}
3) Change the string $sSound = $bRecorded ? " -ar
44100 " : " -acodec copy "; in $sSound = $bRecorded ? " -ar 44100 " : "
-acodec libmp3lame -ar 44100 ";
4) save and upload!!!
I've tryed it and all work....please try it and post your feedback!
The problem was the audio codec...the original audio codec can't be used in flv.