What FFMPEG-PHP can do and how to use the most out of it
extension_loaded('ffmpeg') or die("ffmpeg extension not loaded");
If you get “ffmpeg extension not loaded� then your web hosting provider does not have ffmpeg installed, if you get nothing, then you’re one the good track!
ffmpeg-php is very simple to learn, what it is pretty much is an interface that works with the ffmpeg software to make it easier for PHP developers to access.
Like any object in PHP, you’ll have to start with creating a new instance of it. You can do that by using the following line:
$ffmpegInstance = new ffmpeg_movie(“/path/to/movie/�);
Now that you’ve had that, you can use that instance to use the many features of ffmpeg-php which are from knowing the duration of the movie/audio in seconds to retrieving the bitrate of the movie/audio file.
Once here, it’s pretty much like object oriented programming, ex:
$ffmpegInstance->getDuration(); // Gets the duration in secs.
$ffmpegInstance->getVideoCodec(); // What type of compression/codec used
This can be very helpful when coding anything that has to do with uploading videos because you can know a lot of information about it. I’ve made a small script that pretty much retrieves all the information that ffmpeg can get right here
