Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

aminbaig's avatar

ffmpeg generating a video from images

Hi, I am trying to create a video from a sequence of images stored by the user. Each image can last for 5 seconds in the video.

So if I have 10 images, the video length would be 50 seconds. is it possible to achieve this using ffmpeg-laravel package or some other package?

0 likes
5 replies
Borisu's avatar

Your question is better asked on the github page of the provider...

In any case it seems to me the functionality you desire is not implemented.

ejdelmonico's avatar

@aminbaig Use the regular ffmpeg php plugin and you can run ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4 which should produce a 10fps video of the stills. I haven't tried that in a few years but it should work unless they removed the feature.

aminbaig's avatar

Thanks guys....I am already able to create the video sequence using the ffmpeg on command prompt....I was asking about the laravel-ffmpeg package.

I have also contacted the package owner but still to hear from them.

aminbaig's avatar

Thanks Borius.

I am also trying to use Laravel Envoy Task Runner and SSH from laravelcollective.

Please or to participate in this conversation.