Looking to hire Laravel developers? Try LaraJobs

laravel-ffmpeg maintained by zerofairnight

Description
Laravel FFMpeg integraion
Author
Last update
2019/09/05 19:39 (dev-master)
License
Links
Downloads
18
Tags

Comments
comments powered by Disqus

Laravel FFMpeg

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.