6
I am trying to convert a mp3 file to ogg using ffmpeg.exe the problem is that Joomla won’t let me run an external file even in the same directory.
<?php exec('C:\\path\\to\\ffmpeg.exe -y -i file.mp3 -acodec libvorbis file.ogg'); ?>
This code does not return any error, it just does not execute. Is there any other way to run ffmpeg.exe within Joomla? Or there is a way to direct convert via php that Joomla accepts?