laravel-ffmpeg icon indicating copy to clipboard operation
laravel-ffmpeg copied to clipboard

This package provides an integration with FFmpeg for Laravel. Laravel's Filesystem handles the storage of the files.

Results 118 laravel-ffmpeg issues
Sort by recently updated
recently updated
newest added

How can I resize a video but keep the aspect ratio? I am using ``` ->resize(640, 480) ``` but it stretches the image. Any ideas?

Hello, I am using Laravel 10 and this package and Vue 2 and Video js for frontend. I am exporting the video to S3 bucket and also using encryption keys....

I added the value "libx265" to the return array of the "X264" class and it was possible to convert to X265. Is there any reason why this functionality is not...

i need to apply this in php ```bash ffmpeg -i input.mp4 \ -c:v libx264 -aspect 16:9 -crf 18 \ -vf "scale=iw*min(1280/iw\,720/ih):ih*min(1280/iw\,720/ih),pad=1280:720:(1280-iw)/2:(720-ih)/2" \ -fpsmax 60 -preset ultrafast -c:a aac -b:a 128k...

Class "Pbmedia\LaravelFFMpeg\FFMpegServiceProvider" not found

hi. I tried to install newst ffmpeg version. But it can not be done anymore. So my ffmpeg vesion is '4.2.7' and it is the only option. But I wonder...

I am running a process using this package to convert uploaded audio files to an HLS format. It is working great for the vast majority of media. But it seems...

The file is resulting into exception that Runtime Exception is resulted due to "Encoding failed ". ` use ProtoneMedia\LaravelFFMpeg\Support\FFMpeg; $file= FFMpeg::open([$filename, 'thumb.jpg'])->getFrameFromSeconds(1)->save(); ` I have added the packages and config...

Instead of dynamic hls, why isn't there options for static? It will greatly improve this package as all the parts can be served with nginx. Something like : ```php FFMpeg::fromDisk('uploads')...