https://github.com/vectorhacker/voice-chat
Open source simple voice chat client and server
https://github.com/vectorhacker/voice-chat
Last synced: 5 months ago
JSON representation
Open source simple voice chat client and server
- Host: GitHub
- URL: https://github.com/vectorhacker/voice-chat
- Owner: vectorhacker
- License: mit
- Created: 2019-08-19T18:14:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T20:59:36.000Z (almost 7 years ago)
- Last Synced: 2024-06-20T03:51:44.414Z (almost 2 years ago)
- Language: Go
- Size: 12.1 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Voice Chat
====
Voice Chat is a voice chat client and server that aims to be as simple as possible at hosting voice conversations.
## IMPORTANT NOTICE
This project is under heavy development and internal API will change. This is not complete
## Goals:
- Be CLI based
- Be as simple as possible to use
- Provide a CLI based GUI (much like htop or vtop and the like)
- Use as little bandwidth as needed to transmit sound
## How to build
Make sure that the zeromq and portaudio libraries are installed
```shell
sudo apt install libzmq3-dev
sudo apt install libpulse-dev
```
Then go get the binary
```
go get github.com/vectorhacker/voice-chat/cmd/voice-chat # for the client cli
go get github.com/vectorhacker/voice-chat/cmd/server # to host your own server
```