This is simple voice chat on TCP socket. Whole installation under python3.9. You can install it in Ubuntu/Debian using make install_python3.9
.
sudo make apt_get
sudo make install
When you install wheel you can use binaries of client and server:
socket-voice-chat-client --host 0.0.0.0 --port 10080 --username name
socket-voice-chat-server --host 0.0.0.0 --port 10080
sudo make requirements
RUN_ARGS="--host 0.0.0.0 --port 10080" make server
RUN_ARGS="--host 0.0.0.0 --port 10080 --username name" make client
docker run -p 10080:10080 --rm -it ch0p1k/sockets --host 0.0.0.0 --port 10080
To run in backend process - add -d
flag