Browser Audio Capture

👤 jarvis563 📦 v1.1.0 ⭐ 4.5 ⬇️ 1.1K 下载
🎨 设计多媒体 免费

📖 技能介绍


name: browser-audio-capture description: Capture audio from any browser tab — meetings, YouTube, podcasts, courses, webinars — and stream to any AI agent. Zero API keys, works with any framework. version: 1.1.0


Browser Audio Capture

Give any AI agent ears for the browser. One Chrome extension captures audio from any tab — meetings, YouTube, podcasts, webinars, courses, earnings calls — and streams it to your AI pipeline.

Why Use This

Your AI agent can't hear anything happening in your browser. This skill fixes that. Capture audio from any Chrome tab and stream it to your agent — no API keys, no OAuth, no per-platform integrations.

Use cases: meeting summaries, YouTube/podcast notes, competitive intel from earnings calls, auto-notes from online courses, customer call analysis — anything that plays audio in a browser tab.

Works with any AI agent — Claude, ChatGPT, OpenClaw, LangChain, CrewAI, or your own. If your agent can run shell commands or receive HTTP, it gets browser audio.

Prerequisites

Chrome with remote debugging:

# macOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
  --remote-debugging-port=9222 --user-data-dir=$HOME/.chrome-debug-profile &

Python 3.9+ with aiohttp: pip install aiohttp

Quick Start

CLI (any agent that can exec)

# List tabs — meetings flagged with 🎙️
python3 -m browser_capture.cli tabs

# Auto-detect and capture meeting tab
python3 -m browser_capture.cli capture

# Continuous watch mode
python3 -m browser_capture.cli watch --interval 15

# Stop
python3 -m browser_capture.cli stop

Chrome Extension (one-click, persistent)

  1. chrome://extensions/ → Developer mode → Load unpacked → scripts/extension/
  2. Join a meeting → click Percept icon → Start Capturing
  3. Close popup — capture continues in background

Supported Platforms

Google Meet • Zoom (web) • Microsoft Teams • Webex • Whereby • Around • Cal.com • Riverside • StreamYard • Ping • Daily.co • Jitsi • Discord — plus any future platform that runs in a browser.

Audio Output

Streams to http://127.0.0.1:8900/audio/browser as JSON:

{
  "sessionId": "browser_1709234567890",
  "audio": "<base64 PCM16>",
  "sampleRate": 16000,
  "format": "pcm16",
  "tabUrl": "https://meet.google.com/...",
  "tabTitle": "Weekly Standup"
}

Configure endpoint in scripts/extension/offscreen.js (PERCEPT_URL). Point it at Whisper, Deepgram, NVIDIA Riva, or any transcription service.

Troubleshooting

  • No tabs: Chrome needs --remote-debugging-port=9222
  • Button won't click: Remove + re-add extension (MV3 caches aggressively)
  • Audio not arriving: Check receiver on port 8900. Extension sends to /audio/browser

    7w4.net小葱技能。

🤖 AI 评测

整体质量不错,功能实用,文档清晰易读。CLI和浏览器扩展两种方式都很好用,自动检测会议功能很方便。不足的是安装Chrome扩展时可能会提示缺少图标文件,部分网站可能无法正常捕获音频。建议等待作者修复这些问题后再使用。

📊 多维度评分

适应性4.5
规范性4.4
有效性4.5
可靠性4.4
可信度4.7

📁 包含文件 (13 个)

📄 SKILL.md 2.7 KB
📄 _meta.json 140 B
📄 scripts/browser_capture/__init__.py 39 B
📄 scripts/browser_capture/audio_capture.py 11 KB
📄 scripts/browser_capture/cdp_client.py 2.3 KB
📄 scripts/browser_capture/cli.py 4.2 KB
📄 scripts/extension/README.md 1.3 KB
📄 scripts/extension/background.js 2.1 KB
📄 scripts/extension/manifest.json 607 B
📄 scripts/extension/offscreen.html 132 B
📄 scripts/extension/offscreen.js 3 KB
📄 scripts/extension/popup.html 1.5 KB
📄 scripts/extension/popup.js 3 KB