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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: Generate Claude Code Workflows using Spec Driven Development approach Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal).
GitHub - jech/pw-whip: PipeWire-WHIP bridge
jech · 2026-06-26 · via Show HN

pw-whip: a bridge between PipeWire and WHIP

PipeWire is a multimedia (audio and video) framework for Linux. WHIP (RFC 9725) is a standardised protocol for streaming audio and video to network servers. WHIP is notably implemented by the Galene videoconferencing server.

The program pw-whip acts as a bridge between PipeWire and WHIP: it allows any Linux program that is able to speak to PipeWire to stream its audio over WHIP.

Building

Install libopus and libpipewire.

For example, on Debian, do

apt install libopus-dev libpipewire-0.3-dev

Build and install libdtachannel

cd ~/src
git clone https://github.com/paullouisageneau/libdatachannel
cd libdatachannel
cmake -Bbuild
cd build
make -j
sudo mv libdatachannel.so* /usr/local/lib/
sudo ldconfig

Build pw-whip

cd ~/src/pw-whip/
make -j

If your copy of the libdatachannel sources doesn't live at ~/src/libdatachannel, specify its location as LIBDATACHANNEL_ROOT:

make -j LIBDATACHANNEL_ROOT=/usr/local/src/libdatachannel

You may optionally install pw-whip:

Usage

./pw-whip https://galene.org:8443/group/public/pw-whip/.whip

By default, pw-whip appears as an audio sink to PipeWire, but isn't connected to a source. You will need to connect it manually to a source using something like qpwgraph.

You may request automatic connection using the -c flag, or connection to a specific target using the -C flag:

./pw-whip -C mpv https://galene.org:8443/group/public/pw-whip/.whip

For more information, please consult the manual page:

Limitations

  • No support for ICE restarts, even if supported by the server.
  • No support for trickling local ICE candidates, even if supported by the server.
  • No support for video.
  • We do not currently adapt the throughput and the amount of FEC to varying network conditions.

— Juliusz Chroboczek https://www.irif.fr/~jch/