Is it possible, using PHP, to create a video file (Format doesn't matter at the moment) from a series of images?

I'm not talking about making animated GIFs but real videos.

link|improve this question
I've never heard of a PHP library that can do that. – Truth Sep 29 '11 at 16:46
The short answer will be 'yes'; however, there are so many discrete parts to such a task that you'd be best off tacking it in small chunks and asking questions accordingly. PHP may not even be the best tool. I.e. try reading a collection of images into memory and if you get stuck, let us know what you tried and what isn't working. – Widor Sep 29 '11 at 16:47
feedback

2 Answers

Yes, but why would you want to? PHP isn't suitable for writing video compression software (e.g. implementing an H.264 encoder yourself), much as a chainsaw isn't suitable for neuro-surgery. Use external tools like ffmpeg to do it for you with far less hassle/pain.

link|improve this answer
feedback

there is the ffmpeg-libary that can encode videos in php: http://ffmpeg-php.sourceforge.net/

link|improve this answer
I only browsed the landing page, but it looks like the library is focused on accessing meta information and pulling still frames (decode). Can this library encode video as well? – horatio Sep 29 '11 at 21:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.