Hi Jeremy,

What you're trying to tackle here is fairly complex - and for the most
part, won't have anything to do with Django. The capability of capturing
webcam video and sending it will be almost entirely "client side" - which
means that the logic will reside in the browser, and will be implemented in
Javascript.

The only involvement Django will have will be:
1) Sending the initial content to the user
2) Receiving video content, if it's going to be archived.

If you're looking to do Hangout-like stuff, you're going to be using the
WebRTC extensions that are available in *some* browsers - the best
resources I can point you at are:

http://www.webrtc.org
http://simplewebrtc.com

But even then - the specification isn't widespread. Safari, for example,
doesn't support WebRTC, and neither does IE. That doesn't mean you can't do
hangout in Safari or IE - clearly you can - but it means the interface
isn't going to be easy, either.

Yours,
Russ Magee %-)


On Tue, Jan 27, 2015 at 10:05 PM, Jeremy Hermelin <
contact.herme...@gmail.com> wrote:

> Hi everybody,
>
> I'm quite new in Django community. I've just learn the basics of the
> framework, and now that I know how to create a "blog-style" website, I'm
> wondering how to integrate video streams in my project. Do you have some
> advices about that ? Any existing app ?
>
> What I am looking for precisely :
> - Capturing video stream from a client's webcam (Maybe the easier will be
> using a script)
> - Sending the stream to the server and then to hundreds of clients
> connected to this session.
>
> In fact, it's really close to Google Hangout.
>
> As I said, I'm new in Django, and also in Python, then I'm sorry if the
> answer is obvious. I've made some research on djangopackages but haven't
> find anything.
>
>
> Have an awesome and fantastic day,
>
> Jeremy
>
> By the way : Wooohhh Django is so easy and powerful at the same time !
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/cb8c96bf-854f-4ed5-a803-6cd943c767df%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/cb8c96bf-854f-4ed5-a803-6cd943c767df%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJxq848K_20u7%3DNTAV1TseZE6GHp-HQEhg%3D4WrBABtm5hauQrQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to