Install ffmpeg with cpanel centos server

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • GumSlone
    replied
    remove the ffmpeg.so extention from php.ini

    or install ffmpeg-php manually:
    Code:
    wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.6.0.tbz2  
    tar jxvf ffmpeg-php-0.6.0.tbz2 
    cd ffmpeg-php*
    phpize
    ./configure && make
    make install
    if you get error in ./configure like:
    configure: error: ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the --enable-shared option
    do this:
    Code:
    ./configure --with-ffmpeg=/usr/local/cpffmpeg

    Leave a comment:


  • krazyguy
    replied
    PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20060613/ffmpeg.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20060613/ffmpeg.so: cannot open shared object file: No such file or directory in Unknown on line 0

    i get this error log after installing FFMPEG.

    Leave a comment:


  • GumSlone
    started a topic Install ffmpeg with cpanel centos server

    Install ffmpeg with cpanel centos server

    - Run SSH console

    Code:
    mkdir sources
    cd sources
    wget http://downloads.sourceforge.net/project/ffmpeg-php/ffmpeg-php/0.6.0/ffmpeg-php-0.6.0.tbz2?use_mirror=ovh
    tar xvzf ffmpeginstaller.5.1.tar.gz
    cd ffmpeginstaller.5.1
    ./install.sh
    DONE!
Working...
X