Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I implement video chat in my website using Django?

Tags:

django

chat

video

I want to develop a website in which users can have video chat and they can connect to other user anonymously without had been added by the other person as friend. I also want that all the active users list is displayed on the website. So somebody please suggest me how can I implement it on django?

like image 330
Rahul Satal Avatar asked Jun 05 '16 09:06

Rahul Satal


1 Answers

You can use a third party service for this. Or you can use WebRTC. There are some nodejs packages which can help you do this. I like "EasyRTC" for that.

Or if you want to use Python, you can use Twisted. Here's a tutorial (found on Google, not tested by myself - https://ferretfarmer.net/2013/09/05/tutorial-real-time-chat-with-django-twisted-and-websockets-part-1/)

In essence, Django doesn't handle the video streaming/chat part. You can use Django for authentication and serving the required html and other stuff. But the video chat needs to depend on other services.

like image 113
masnun Avatar answered Oct 11 '22 06:10

masnun