I have a website that allows users to upload videos to it, After they upload videos, I would like to be able to display them using a flash player.

One flash player i know is flowplayer, althrough if anyone knows a better one I will be happy to know.

In any case, as I understood from a brief google search, there are no players that can play .avi/.mpeg files, but they can only play .flv files.

I began searching for ways to convert my user's avi's/mpeg's and found that I can use ffmpeg to convert the video to .flv using system().

Is this the best solution for me? I feel like ffmpeg takes a lot of CPU and once I have enough users the server will crash..

Thanks!

link|improve this question

What's the question? – fabrik Oct 18 '10 at 8:20
Am I using the best solution? converting using php's system() and using ffmpeg – hoverhand Oct 18 '10 at 8:20
1  
No, this is definitely not the best solution. – fabrik Oct 18 '10 at 8:22
1  
You're right, only certain formats will play in flash players. You're also right that converting a video takes a lot of resources. This is more a problem of server infrastructure than which code to use for doing the encoding. – deceze Oct 18 '10 at 8:29
1  
Not really. Flash player can only handle a limited selection of codecs. If you serve different avi/mpeg formats to be played by, say, the client's native Windows Media Player component, the client will need to have the appropriate codecs installed. That's not going to work well. The server will have to convert the uploaded videos to some common format (H.264 is everybody's favorite right now), and that simply takes a lot of resources, full stop. You'll probably need a dedicated server or ten working through a queue of uploaded videos. – deceze Oct 18 '10 at 8:37
show 2 more comments
feedback

1 Answer

up vote 4 down vote accepted

Just an outline

(Note: i don't own nor wrote a PHP video sharing site, so treat these like tips)

  • Set up your web server and PHP to be capable of accepting large files via HTTP
  • Let users upload their videos via a web interface
  • Upon successful upload add uploaded video to a queue
  • Set up a fully server side script that handles video processing (No PHP)
  • Run a cron job on this queue when your server is able to crunch uploaded videos
  • Notify users when videos are done

Hope it helps in some way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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