0 votes
in Python by
How to make a video calling app in python

1 Answer

0 votes
by

Building a Video Calling App using Python & Flask
Link to build the App 
flask_webrtc_youtube
A basic WebRTC video audio chat app made using python Flask.
Create and join video chat rooms. The users connects to each other in a peer to peer mesh network using WebRTC. They share their audio and video directly with each other without going through a centralized server. However, a centralized server is needed to initiate the connections at first using a process called signaling. This, signaling server is made using Flask in python and data is shared between server and clients using SocketIO.
Source code
Source Code is Available in the description box below in the video. So do check it out...
Installation
To run this on your machine, install the following:
Requirements:
python 3.x
Flask
Flask-SocketIO
Install requirements using pip:
pip install -r requirements.txt
To start a server on localhost:
python server.py

Related questions

0 votes
asked Oct 27, 2022 in Python by SakshiSharma
+1 vote
asked Feb 15, 2021 in Python by SakshiSharma
...