zerofairnight / laravel-ffmpeg
Laravel FFMpeg integraion
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zerofairnight/laravel-ffmpeg
Requires
- php: ^7.1.3
- illuminate/support: ~5
- php-ffmpeg/php-ffmpeg: ^0.13
- symfony/process: ^4.0
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-12-06 07:19:21 UTC
README
A package that for work with ffmpeg in Laravel
Usage
Using this library is super easy.
Using Facades:
use Laravel\FFMpeg\Facades\FFMpeg; $video = FFMpeg::open($file);
Using dependency injection:
use Laravel\FFMpeg\FFMpeg; public function store(FFMpeg $ffmpeg) { $video = $ffmpeg->open($file); }
After open a file you can use any methods of the PHP-FFMpeg library.