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 hav开发者_如何学编程e to install the ffmpeg or any related thing to run it
- Download ffmpeg dll files from here: http://sergey89.ru/files/ffmpeg-php-win32-all.zip
- Extract and put php_ffmpeg.dll to you php ext folder(D:\xampp\php\extensions)
- Put the rest of dlls to you windows/system32 folder(C:\WINDOWS\system32)
- Add code “extension=php_ffmpeg.dll”in your php.ini file located here: D:\xampp\apache\bin
- Restart apache and run phpinfo() – you should see the ffmpeg extension .
Hope this will solve your problem.
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.
精彩评论