Installing ffmpeg module for php on windows server

I got

PHP fatal error: Class' ffmpeg_movie not found

I found several archives with php_ffmpeg.dll, also I added extension=php_ffmpeg.dll

to php.ini, restarted apache but nothing related to ffmpeg when checking phpinfo ()

My server is running on Windows and I need help installing this library.

I just look in error.log and found the following line

PHP Warning: PHP Startup: Unable to execute load dynamic library 'C: \ XAMPP \ PHP \ ext \ php_ffmpeg.dll' - The specified module was not found. \ R \ n in Unknown on line 0 but the dll file is there

+2


a source to share


1 answer


  • The server process may not have permission to access the file
  • Try it first on the cli, you can debug this better - try

$ php -m



to list all modules

0


a source