I followed exactly the steps in the INSTALL file - it was ./configure
&& make
REQUIREMENTS
============
ffmpeg-0.4.9pre1 or higher built with the --enable-shared option and
without the --enable-swscale option (ffmpeg svn recommended)
php-5.0.x or higher. For php-4.x.x, use ffmpeg-php-0.5.1 or older.
gd-2.0.x or higher or the version of GD bundled with PHP
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
these 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.x.x.tbz2 -C /path/to/php_sources/ext/
3. cd into the ffmpeg extension directory
cd /path/to/php_sources/ext/ffmpeg-php.X.X.X/
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)
On 15 Jan., 20:37, Ashley Sheinwald <
ashley.sheinw...@gmail.com>
wrote: