ffmpeg Installed with --enable-libx264

How to fix this error I see on the install page?

ffmpeg Installed with --enable-libx264 (required for video): NO

I am on windows 2008 and have ffmpeg in my path.

Hello,

I had a similar issue. For me, ffmpeg was in my path but not in the apache users path. That’s the user that the apache process is running under. You can find the user via ps aux | grep httpd or ps aux | grep apache2.

You can confirm that ffmpeg is missing from the apache users path via printing the path via php:

exec(“echo $PATH;”, $output);
print_r($output);
exit;

I needed to add the directory in which ffmpeg resides (which ffmpeg) into to the PATH of the apache user.

Also, that user should have permissions to execute ffmpeg.

hope this helps!

  • DeShawn