Rahul TS
Rahul TS

Reputation: 1218

did wamp server supports ffmpeg in my windows local machine

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

Upvotes: 0

Views: 664

Answers (2)

Mitul
Mitul

Reputation: 11

  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.

Upvotes: 1

Marc B
Marc B

Reputation: 360772

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.

Upvotes: 0

Related Questions