Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I record a video from the client-side browser using google app engine?

This application would be usefull for using the youtube API. Right now, the app I made only allowds for video upload, but I need the users to be able to record video in their browsers.

Thank you!

share|improve this question

1 Answer

up vote 1 down vote accepted
  1. Flash video capture would not work as it needs RTMP server and RTMP can not be implemented on AppEngine (connection time limit).

  2. So the only remaining way is to write a Java applet to capture video and upload it as a file. Something like this: http://www.mutong.com/fischer/java/usbcam/

share|improve this answer
Thanks! I thought I could use flash. I appreciate the clarification and the solution :) – Daniel Mar 28 '11 at 23:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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