• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Question plesk onyx ffmpeg install ?

TheCrow

New Pleskian
does anyone here have a newer up-to-date ffmpeg to install onto plesk onyx linux 17.x
yes i have a plesk license from OVH and asked for help but they said they only do hardware only not plesk services support
 
Since I was struggling a bit with installing FFMPEG php extension in Plesk using CentOS7, I wrote a quick how-to. Maybe it will help some other users.


1. Make sure EPEL is enabled

2. Enable RPM Fusion
# yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm

3. install ffmpeg and dependencies
# sudo yum install ffmpeg ffmpeg-devel mplayer mencoder flvtool2 libogg libvorbis lame
# sudo yum install make plesk-php56-devel gcc glibc-devel zlib-devel

4. Download ffmpeg-php. For CentOS 7 you can use my fork as the default will look foor FFMPEG headers in the wrong location ( configure: error: ffmpeg headers not found. · Issue #24 · tony2001/ffmpeg-php · GitHub ).
# git clone GitHub - nilsringersma/ffmpeg-php: PHP extension for video editing, wrapping ffmpeg
# cd ffmpeg-php
# /opt/plesk/php/5.6/bin/phpize

5. Configure & make
# ./configure --with-php-config=/opt/plesk/php/5.6/bin/php-config --enable-skip-gd-check
# make
# make install

6. Enable the extension
# echo "extension=ffmpeg.so" > /opt/plesk/php/5.6/etc/php.d/ffmpeg.ini
# plesk bin php_handler --reread
 
I have done it on non-plesk environment with yum but not sure how to do that in plesk. please suggest something it is really urgent. google did not help much in this case If i try using yum in plesk environment, will it destroy or misconfigure my plesk server? Subway Surfers Psiphon Hill Climb Racing
 
Since I was struggling a bit with installing FFMPEG php extension in Plesk using CentOS7, I wrote a quick how-to. Maybe it will help some other users.


1. Make sure EPEL is enabled

2. Enable RPM Fusion
# yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm

3. install ffmpeg and dependencies
# sudo yum install ffmpeg ffmpeg-devel mplayer mencoder flvtool2 libogg libvorbis lame
# sudo yum install make plesk-php56-devel gcc glibc-devel zlib-devel

4. Download ffmpeg-php. For CentOS 7 you can use my fork as the default will look foor FFMPEG headers in the wrong location ( configure: error: ffmpeg headers not found. · Issue #24 · tony2001/ffmpeg-php · GitHub ).
# git clone GitHub - nilsringersma/ffmpeg-php: PHP extension for video editing, wrapping ffmpeg
# cd ffmpeg-php
# /opt/plesk/php/5.6/bin/phpize

5. Configure & make
# ./configure --with-php-config=/opt/plesk/php/5.6/bin/php-config --enable-skip-gd-check
# make
# make install

6. Enable the extension
# echo "extension=ffmpeg.so" > /opt/plesk/php/5.6/etc/php.d/ffmpeg.ini
# plesk bin php_handler --reread

hi
ubuntu 16 plesk 17 install command share ? thanks
 
Back
Top