Hello Friends,
Well, i tried the below mention way to check whether the FFMpeg extension exists or not for the Server:
if(extension_loaded('ffmpeg'))
echo 'FFMPeg Exists on server';
else
echo 'No FFMPeg';
While FFMpeg is working file in my local computer, but still it shows the result "No FFMPeg" in my local system.
Can anybody have some solution for it?