I have Windows XP, Apache, PHP 5.3 and ffmpeg working fine. I need to convert flv to avi or vice versa without using the exec() command. Is this possible?
exec()
Try to use pclose(popen($cmd, 'r')); instead exec()
pclose(popen($cmd, 'r'));