惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - tau-org/tau-tower: Webradio server - broadcasts ...
2026-06-27 · via Hacker News

Compiles on macOS (Intel / Silicon), Ubuntu and NixOS

This project is funded through NGI Zero Core, a fund established by NLnet with financial support from the European Commission's Next Generation Internet program. Learn more at the NLnet project page.

NLnet foundation logo NGI Zero Logo

Usage:

This tool is built for livestreaming audio to the world wide web, broadcasting a audio stream from an instance of tau-radio, the accompanying software.

Modelled after the Icecast software, it serves a html audio stream that can be used in a audio tag on any other website.

You should run this on a remote server, such as a AWS, Digital Ocean or any VPS with the correct priviledges.

  • Note that the smallest available Digital Ocean 'Droplet' does not have enough RAM to build this project locally. The workaround is to build for that architecture using ex: cargo build --target x86_64-unknown-linux-gnu.

To install:

$ cargo install --git https://github.com/tau-org/tau-tower

The first time using the tool, it will search your system for a config file. It looks for it in the path

$HOME/.config/tau/tower.toml # on macOS

or

$XDG_CONFIG_HOME/tau/tower.toml # on Linux

If there is no config file located there, you will be prompted to create one.

# username and password are NOT secure, they only
# link a tauradio and tautower service together
username = "username" 
password = "emanresu" 

# Sets the listening port, to which the source stream is transmitted
listen_port = 8000      

# Sets the broadcast port, from which the stream will be accessable
broadcast-port = 8001       

# Sets the server http endpoint - http://localhost:8001/tau.ogg
broadcast-endpoint = "tau.ogg"       

# Optional: 
# Sets which other sites are able to rebroadcast the stream
# "*" allowes all, adding "http://localhost:4000" to list is redundant
cors_allow_list = ["*", "http://localhost:4000"]

If you want to temporarily overwrite the config, you are able to pass arguments.

# Ex: Uses temporary credentials, and disables the local recording. 
$ tau-tower \
  --listen-port <listen-port> \
  --broadcast-port <broadcast-port> \
  --cors-allow-list "*"

Dependencies

On Linux (using apt):

$ sudo apt update
$ sudo apt install build-essential

Streaming Pipeline

tau-radio runs on your local machine, and captures sound from the audio device on your system. The defaults are BlackHole 2ch on macOS, and pipewire on Linux, though these can be overwritten by the config or in the CLI arguments.

The captured audio is then streamed to the tau-tower, which should run on a remote server. This server application exposes a audio media stream that can be consumed by many clients, as a web radio.

Alongside tau-tower should run an instance of Asciinema which can use the live audio stream as background to a live terminal stream, by setting the broadcast endpoint URL as a media source in the streams settings.

https://example.com:8002/tau.ogg

For this to work, the Asciinema origin must be added to cors_allow_list in tower.toml:

cors_allow_list = ["https://example.com:4000"]
your computer remote server
(audio capture) (opt. tls/ssl) (proxy) (broadcaster) (opt. stream host)
tau-radio -> internet -> Caddy -> tau-tower -> Asciinema

For TLS termination and reverse proxy setup, see Proxy Setup (Caddy).