0
Can anyone please tell me how can I implement video chatting website through Django+ ? Also I'm at fully beginner stage.
3 ответов
+ 1
As you said you are at fully beginner stage, so first learn basics of python then go in the deep.
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.
You can use WebRTC for this.
WebRTC will provide you real time communication. With WebRTC, you can add real-time communication capabilities to your application that works on top of an open standard. It supports video, voice, and generic data to be sent between peers, allowing developers to build powerful voice- and video-communication solutions.
I have finded something related to your question here
https://stackoverflow.com/questions/37640368/how-can-i-implement-video-chat-in-my-website-using-django#:~:text=In%20essence%2C%20Django%20doesn't,to%20depend%20on%20other%20services.
0
Thanks Vats [ DEV ] for your suggestion and help.
0
Learn Sockets in JavaScript