Re: Looking for a way to broadcast live video streams. Is it possible with Django ?

2016-06-04 Thread Adam
On Tuesday, January 27, 2015 at 10:32:48 PM UTC-8, Jeremy Hermelin wrote: > > > Thank you Russ and Cal for your answers. > > I'll take a look at WebRTC that seems to be a revolution in that domain, > and it's a matter of time before it will spread to Safari or IE. > Thanks also, Does

Re: Looking for a way to broadcast live video streams. Is it possible with Django ?

2015-01-27 Thread Jeremy Hermelin
Thank you Russ and Cal for your answers. I'll take a look at WebRTC that seems to be a revolution in that domain, and it's a matter of time before it will spread to Safari or IE. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Looking for a way to broadcast live video streams. Is it possible with Django ?

2015-01-27 Thread Cal Leeming
This really isn't something Django can do out of the box, but if you're looking to get simple video streams integrated into your site, then perhaps consider using LiveStream embed instead? If you're looking to create your own service, then unless you are a skilled programmer with experience in

Re: Looking for a way to broadcast live video streams. Is it possible with Django ?

2015-01-27 Thread Russell Keith-Magee
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

Looking for a way to broadcast live video streams. Is it possible with Django ?

2015-01-27 Thread Jeremy Hermelin
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