I'm writing a PHP script that converts uploaded video files to FLV on the fly, but I only want it to run that part of the script if the user has FFMPEG installed on the server. Would there be a way to detect this ahead of time? Could I perhaps run an FFMPEG command and test whether it comes back "command not found?"
|
feedback
|
|
The third parameter to the
This works on my Ubuntu box. | |||
|
feedback
|
|
You answered your own question, you can run the command and if it comes back negative you know it is not installed, or you can check the default paths the user has set for possible ffmpeg binaries. | |||||||
feedback
|
|
Try:
If it comes back empty ffmpeg is not available, otherwise it will hold the absolute path to the executable, which you may use in the actual ffmpeg call:
| ||||
|
feedback
|
|
You could give this a try:
Reusable for other functions as well - not certain of security concerns. | |||||
feedback
|