Skip to content

Reverse proxy to Inject ICY metadata into audio streams

License

Notifications You must be signed in to change notification settings

abustany/icyproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cf015ea Β· Feb 4, 2025

History

11 Commits
Feb 4, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 4, 2025
Feb 3, 2025
Feb 4, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025
Feb 3, 2025

Repository files navigation

🧊 IcyProxy

A simple reverse proxy that muxes ICY metadata into an audio stream.

Why?

Some webradios don't expose the current song metadata in the audio stream, relying instead on a separate API. This prevents third party players from displaying the information. IcyProxy acts as a man-in-the-middle proxy that fetches both the audio stream and the metadata, and muxes them together.

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Audio stream without β”‚
β”‚    ICY metadata      │───┐                  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚ Audio stream with β”‚
                           β”œβ”€β”€>β”‚ IcyProxy │──>β”‚   ICY metadata    β”‚
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
     β”‚ Webradio custom β”‚   β”‚
     β”‚  metadata API   β”‚β”€β”€β”€β”˜
     β”‚  (HTTP/JSON)    β”‚
     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Installation

Using Docker

Run docker run -ti --rm -v /path/to/your/sources.json:/sources.json:ro -p 8080:8080 ghcr.io/abustany/icyproxy:latest icyproxy /sources.json

Using Go

Run go build -o . ./cmd/icyproxy

The icyproxy binary will be in the root directory.

With Nix

Run nix build

The icyproxy binary will be in result/bin.

Usage

IcyProxy relies on a JSON configuration file to know how to fetch the audio and metadata for a given station. Several stations can be configured on a same server. There is an example config file in examples/sources.json.

You can then simply run icyproxy sources.json to start the server.

Run icyproxy -help for more command line options.