https://github.com/dheison0/audio-forward
Forward audio from one Linux PC to other using a TCP socket
https://github.com/dheison0/audio-forward
audio forward network sound ssh tcp tunnel vnc
Last synced: about 1 year ago
JSON representation
Forward audio from one Linux PC to other using a TCP socket
- Host: GitHub
- URL: https://github.com/dheison0/audio-forward
- Owner: dheison0
- License: mit
- Created: 2024-04-25T23:20:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T14:53:14.000Z (about 2 years ago)
- Last Synced: 2025-02-15T03:41:17.350Z (over 1 year ago)
- Topics: audio, forward, network, sound, ssh, tcp, tunnel, vnc
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Audio Forward
Forward audio from one PC to another using a TCP socket
## Build
Dependencies:
- portaudio19-dev
Compile the program:
```bash
go build .
```
## Usage
Start the server on the remote PC:
```bash
./audiof server
```
Connect to server:
```bash
./audiof client 192.168.1.105:8322
```
## Todo
- [ ] Compress data before sending;
- [ ] Fix some underrun on client;
- [ ] User can set listening port;
- [ ] Accept different sample rates.