https://github.com/atiksoftware/php-class-ffmpeg
With this class you can use FFmpeg with PHP without installing php-ffmpeg extension.
https://github.com/atiksoftware/php-class-ffmpeg
Last synced: about 1 month ago
JSON representation
With this class you can use FFmpeg with PHP without installing php-ffmpeg extension.
- Host: GitHub
- URL: https://github.com/atiksoftware/php-class-ffmpeg
- Owner: atiksoftware
- Created: 2018-09-15T06:16:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T07:47:43.000Z (over 7 years ago)
- Last Synced: 2025-07-01T05:44:15.519Z (11 months ago)
- Language: PHP
- Size: 20.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-class-ffmpeg
With this class you can use FFmpeg with PHP without installing php-ffmpeg extension.
----------
## Installation
### Using Composer
```sh
composer require atiksoftware/php-class-ffmpeg
```
```php
require __DIR__.'/../vendor/autoload.php';
use \Atiksoftware\FFmpeg\FFmpeg;
$FFmpeg = new FFmpeg();
```
#### _create thumbnail_
```php
$FFmpeg->input( "Facebook.MP4" )->loglevel("debug")->output( "thumbnail.jpg" )->thumb( "1280x720" , 1, 10 )->ready();
```