atiksoftware / php-class-ffmpeg
There is no license information available for the latest version (1.2) of this package.
With this class you can use FFmpeg with PHP without installing php-ffmpeg extension.
1.2
2018-09-15 07:45 UTC
Requires
- symfony/process: ^4.0
This package is auto-updated.
Last update: 2024-11-15 21:23:51 UTC
README
With this class you can use FFmpeg with PHP without installing php-ffmpeg extension.
Installation
Using Composer
composer require atiksoftware/php-class-ffmpeg
require __DIR__.'/../vendor/autoload.php'; use \Atiksoftware\FFmpeg\FFmpeg; $FFmpeg = new FFmpeg();
create thumbnail
$FFmpeg->input( "Facebook.MP4" )->loglevel("debug")->output( "thumbnail.jpg" )->thumb( "1280x720" , 1, 10 )->ready();