I'm trying to convert an mp3 file to ogg using ffmpeg.exe The problem is that Joomla does not 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 errors, it just does not execute. Is there any other way to run ffmpeg.exe within Joomla? Or is there a way to convert direct via php that Joomla accepts?