I need to run the ffmpeg command in the PHP.
But php-ffmpeg is no more supports the latest version and out of date.
May i know alternate way to run the ffmpeg command in the webfile (PHP,Javascript,jQuery).
I try the exec()
and shell_exec()
in the PHP file but gets the blank output.
echo shell_exec("/usr/local/bin/ffmpeg -i test.mp3 -codec:a libmp3lame -b:a 128k out.mp3");
and
echo shell_exec("ffmpeg -i test.mp3 -codec:a libmp3lame -b:a 128k out.mp3");