문제

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

도움이 되었습니까?

해결책

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.

다른 팁

  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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top