Я скачал исходники ffmpeg-php extension, но там нет ни makefile, ни configure. Есть только config.m4 - чего с ним делать, пока не знаю. Вот вытяжка из INSTALL:
=================== INSTALLATION INSTRUCTIONS =========================
These instructions are for Linux since I don't have windows. If you successfully build on windows, let me know how you did it and I'll update the instructions.
BUILDING FFMPEG ---------------
cd /path/to/ffmpeg ./configure --enable-shared --prefix=/usr make clean && make [become root] make install
BUILDING FFMPEG-PHP AS A SHARED EXTENSION -----------------------------------------
1. Build php if not already built or installed by your distro (See the file INSTALL in your php source directory)
2. Unpack the archive
tar -xjf ffmpeg-php.X.XX.tar.gz
3. cd into the ffmpeg extension directory
cd ffmpeg-php.X.XX/
4. Run phpize (included with your php install) to build configuration files
phpize
5. Configure and build
./configure && make
6. Install the shared extension
make install (as root)
If everything went as planned, ffmpeg-php is now installed as a shared library. You must explicitly load it in your scripts using dl(ffmpeg.so) or if you want it available to all scripts by default add extension=ffmpeg.so to your php.ini file which will tell php to load it when starting up. ===================
Как мне собрать расширение? Я попробовал поискать phpize, но не нашел