要尝试ffmpeg
生成缩略图,但无法确定如何configure ffmpeg on live server
这些说明适用于Linux。我不知道关于Windows or Mac
的第一件事。
构建FFMPEG-PHP扩展
构建并安装PHP(如果尚未安装)
Unpack the ffmpeg-php sources
tar -xjf ffmpeg-php-X.x.x.tbz2
切换到ffmpeg-php extension
目录并运行phpize(包含在PHP安装中)以构建配置文件。
注意:如果你的php安装不包含phpize,你可能需要为你的发行版安装一个php-dev包(通常命名为:php-dev, php-devel
或类似的)
cd ffmpeg-php-X.x.x /
phpize
Configure and build the extension.
./configure && make
Install the shared extension.
sudo make install
如果一切按计划进行,ffmpeg-php现在作为共享扩展安装。