Audio Over IP is a Windows application that allows you to stream raw1 system audio over the network with low latency.
- Sender Mode (Server): Broadcast your system's audio to multiple connected clients.
- Receiver Mode (Client): Connect to one or multiple senders and play the audio through one or multiple playback devices at once.
- Audio Resampling: Automatically handles sample rate conversion between different audio devices while offering multiple resampling algorithms to choose from.
The audio stream is not encrypted. Do not use this software for transmitting sensitive audio data on untrusted networks.
Raw system audio can generate very high bitrates, so your network must be able to stream large amounts of data reliably in real time.
Example:
Audio device configuration (e.g. SteelSeries Sonar - Gaming):
- Channels: 8
- Bit depth: 24‑bit
- Sample rate: 96,000 Hz
Important note:
WASAPI always processes audio internally at 32‑bit, so the actual captured format becomes:
- Channels: 8
- Bit depth: 32‑bit
- Sample rate: 96,000 Hz
Resulting Bandwidth Requirement:
With only one client connected, the server already needs to transmit more than 24 Mbit/s.
![]() |
![]() |
![]() |
![]() |
- Download the the latest release here: Releases
- Unzip the exe file to any location and run it
- Done. The app is a portable and self contained exe file with no installation required
Since this application relies on the Windows Core Audio API (WASAPI), it is currently Windows-only.
To build and run the project from source, you need:
- Go (version 1.25 or later)
- Node.js (version 22.21 or later + npm)
- Wails CLI: Install it with
go install github.com/wailsapp/wails/v2/cmd/wails@latest - GCC Compiler: Required for CGO (e.g., MinGW-w64)
-
Clone the repository:
git clone https://github.com/ElTheLedge/Audio-Over-IP.git cd Audio-Over-IP -
Check necessary wails dependencies:
# WebView2, Nodejs and npm need to appear with status "Installed" wails doctor -
Run in Development Mode: This will start the application with hot-reloading enabled for both backend and frontend.
# The Wails CLI handles both Go and npm dependencies automatically wails dev -
Build for Production: To create a standalone
.exefile:# The Wails CLI handles both Go and npm dependencies automatically wails buildThe output binary will be located in the
build/bindirectory.
- Backend: Go (Golang)
- Frontend: React, TypeScript, Vite
- UI Framework: Tailwind CSS, shadcn/ui, radix-ui
- App Framework: Wails v2
- Audio API: Windows Core Audio API
- Networking: Gorilla WebSocket
This Project is licensed under the EUPL License
Footnotes
-
"raw" as in 32-bit PCM (WAV formatted) Audio provided by the Windows Core Audio API ↩



