laravel-ffmpeg
laravel-ffmpeg copied to clipboard
This package provides an integration with FFmpeg for Laravel. Laravel's Filesystem handles the storage of the files.
Hey man thanks for your amazing library I wonder how can i reformat this command to this lib ? ```php $command = [ 'ffmpeg', '-i', $file, '-c:a', 'libmp3lame', '-q:a', '0',...
Is it possible to chain filter complex in a loop like so? ```php $fmpeg = FFMpeg::fromDisk('local')->open(['video.mp4', 'video2.mp4']); foreach($filters as $filter) { $fmpeg->addFilter($filter['in'], $filter['filter'], $filter['out']); } $fmpeg->export() ->addFilter('[0:v][1:v]', 'hstack', '[v]') //...
I Export to new \FFMpeg\Format\Video\X264, but still cannot open the mp4 on safari, how do I export format for safari too? Thanksss
I'm trying to concat two different videos into one video. But those videos are of different dimensions and hence FFMPEG not able to do that. Here is the error output:...
Hello how to enable audio from video and audio when i trying to merge into one cannot hear sound from the video thank you ``` FFMpeg::fromDisk('public') ->open(['karaoke.mp3','karaoke.mp4']) ->export() ->addFormatOutputMapping(new X264,...
I am using this to add a subtitle which if working fine: ```php FFMpeg::openUrl($videoUrl) ->addFilter(function (VideoFilters $filters) use ($subtitleFilePath) { $filters->custom("subtitles={$subtitleFilePath}"); }) ->export() ->inFormat(new X264()) ->toDisk('s3') ->save($savePath); ``` I tried...
Hi, I have a problem while starting to encode my video using this package because `DynamicHLSPlaylist::parseLines()` value always return null did i do something wrong? and this is my code...
Bug fix
When set disk on construct function we must return class instance.
I'm trying to convert a large mp4 files ( + 1GB ), when converting them locally on windows 10 the package works perfectly, when trying to convert large files on...
 that display in computer media plyer but video-js not display other audio they get only single audio i try but that is only one audio working not display...