Question

Did wamp server supports ffmpeg in my windows local machiine. If so can I straight away run my code in wamp server to encode video (or) did I have to install the ffmpeg or any related thing to run it

Was it helpful?

Solution

WAMP won't install ffmpeg for you, that's outside its purview. But nothing says you can't install it yourself and then use something like this to interface with it.

OTHER TIPS

  1. Download ffmpeg dll files from here: http://sergey89.ru/files/ffmpeg-php-win32-all.zip
  2. Extract and put php_ffmpeg.dll to you php ext folder(D:\xampp\php\extensions)
  3. Put the rest of dlls to you windows/system32 folder(C:\WINDOWS\system32)
  4. Add code “extension=php_ffmpeg.dll”in your php.ini file located here: D:\xampp\apache\bin
  5. Restart apache and run phpinfo() – you should see the ffmpeg extension .

Hope this will solve your problem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top