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.

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/atiksoftware/php-class-ffmpeg

1.2 2018-09-15 07:45 UTC

This package is auto-updated.

Last update: 2025-09-15 23:07:50 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();