What is FFmpeg Hosting? How to Check FFMPEG Hosting enabled in your server or not [EXPLAINED]

preview_player
Показать описание
Today in this video you will learn about how to check FFmpeg hosting is enabled or not.
How to check whether FFMPEG is enabled in my server or not?
Write this simple code in any .php file and test it

?php
$ffmpeg = trim(shell_exec(‘which ffmpeg’)); // or better yet:
$ffmpeg = trim(shell_exec(‘type -P ffmpeg’));
if (empty($ffmpeg))
{
die(‘ffmpeg not available’);
}
shell_exec($ffmpeg . ‘ -i …’);?

If it returns ‘ffmpeg not available‘ then it is not enabled in your server.

Watch the video carefully to learn about how to check FFmpeg hosting is enabled in the server or not.

For more information about Redserverhost Hosting and the services we provide see here:

👉Don't Forget! SUBSCRIBE for more interesting Tips!

If you enjoyed this video, please consider following us on Facebook and Twitter.


Thanks for watching my Video. Please Like Share and Subscribe to My Channel
Рекомендации по теме
Комментарии
Автор

it is returning with the same code i provided

mostaqueahmed
Автор

it says FFMPEG not available. Correct?

odingamubutu