please help me installing FFMEPG,
i have instilled it but there is no extension in php setting.
in php.d ffmepg is not there.
anyone one know how to install it.
please help me installing FFMEPG,
i have instilled it but there is no extension in php setting.
in php.d ffmepg is not there.
anyone one know how to install it.
2
Answers
you don’t have to, you just could use
shell_exec
to run ffmpeg on phpYou can follow this link
Running ffmpeg command using shell_exec in php as a background process in windows
For PHP >=7.0, simply use composer:
For earlier PHP versions:
1. Make sure EPEL is enabled:
If it is not, enable it as follows:
2. Enable RPM Fusion:
3. Install FFmpeg and dependencies:
4. Download
ffmpeg-php
:5. Do
configure
&make
:6. Enable the extension:
For more general instructions, refer to this guide.