Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 days 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-30T14:53:14.000Z (6 months ago)
- Last Synced: 2024-04-30T16:13:52.096Z (6 months 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-devCompile 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.