Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.