I want a user to be able to upload a video from their computer or record it right from their webcam, then fill out other information with a form. I'm writing this app with Django.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Recording directly from the web cam is not as simple as uploading an existing video file. You may need to look into one of the many video streaming protocols and handle that via a server such as red5. This approach would require the use of Flash or something similar.

link|improve this answer
+1 If the video will still be captured with a webcam, the red5 solution will be better in terms of ergonomy and for long recod. It's indeed quite harder to implement. There is a recent github project for this purpose, it's just an alpha. – Pierre de LESPINAY Nov 2 '11 at 8:40
feedback

The Django documentation should be able to help you handle file uploads:

http://docs.djangoproject.com/en/dev/topics/http/file-uploads/

link|improve this answer
feedback

Additionaly have a look at jquery uploadify. It's pretty useful for large file uploads because it display the progress of the download.

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.