{"id":42253808,"url":"https://github.com/petitstrawberry/spectrum","last_synced_at":"2026-01-27T05:17:24.881Z","repository":{"id":331414633,"uuid":"1110683344","full_name":"petitstrawberry/spectrum","owner":"petitstrawberry","description":"Audio mixer \u0026 router for macOS","archived":false,"fork":false,"pushed_at":"2026-01-03T13:00:13.000Z","size":4333,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2026-01-07T23:12:11.632Z","etag":null,"topics":["audio","audiounit","audiounit-host","broadcast","macos","mixer","music"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/petitstrawberry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-05T15:05:37.000Z","updated_at":"2026-01-03T13:00:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/petitstrawberry/spectrum","commit_stats":null,"previous_names":["petitstrawberry/spectrum"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/petitstrawberry/spectrum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petitstrawberry%2Fspectrum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petitstrawberry%2Fspectrum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petitstrawberry%2Fspectrum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petitstrawberry%2Fspectrum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/petitstrawberry","download_url":"https://codeload.github.com/petitstrawberry/spectrum/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petitstrawberry%2Fspectrum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28803650,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T03:44:14.111Z","status":"ssl_error","status_checked_at":"2026-01-27T03:43:33.507Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","audiounit","audiounit-host","broadcast","macos","mixer","music"],"created_at":"2026-01-27T05:17:24.410Z","updated_at":"2026-01-27T05:17:24.876Z","avatar_url":"https://github.com/petitstrawberry.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spectrum\n\nEnglish | **[日本語](README_ja.md)**\n\n\n**Spectrum** is a **Audio Mixer \u0026 Router** for macOS. Mix, route, and process audio from multiple sources to any output device with a visual graph-based interface.\n\n\u003e When paired with **Prism** (a virtual audio splitter), Spectrum lets you capture per-application audio and route it independently — perfect for streaming, recording, or complex monitoring setups.\n\n\n## What Can Spectrum Do?\n\n- **Visual Audio Routing**: Connect any input to any output with a node-based graph\n- **Per-Application Control**: Route Discord, Spotify, game audio, etc. to different outputs (requires Prism)\n- **Real-time Mixing**: Adjust levels, mute channels, and see live audio meters\n- **AudioUnit Effects**: Add reverb, EQ, compression, and other AU plugins to any bus\n- **Multi-Device Output**: Send audio to headphones, speakers, and recording software simultaneously\n\n\n## Prerequisites\n\n- **macOS** (10.15 or later)\n- **Xcode Command Line Tools**: `xcode-select --install`\n\n\n## Quick Start\n\n### For Users\n\n1. **Download Spectrum** (or build from source — see Development section below)\n\n2. **Install Prism** (optional, for per-app audio routing):\n   ```bash\n   cd prism\n   cargo install --path .\n   ./build_driver.sh\n   sudo ./install.sh\n   # Reboot macOS\n   ```\n\n3. **Start Prism daemon** (if using Prism):\n   ```bash\n   prismd --daemonize\n   ```\n\n4. **Launch Spectrum** and start routing audio!\n\n\n## Development\n\n### Repository Structure\n\n- `src/` — Frontend (React UI)\n- `src-tauri/` — Backend (Rust / Tauri)\n- `docs/` — v2 architecture \u0026 improvement plans\n\n### Setup\n\n**Prerequisites:**\n- **Node.js** and **pnpm**\n- **Rust toolchain** (follows `rust-toolchain.toml`)\n\n**Using Nix (Optional):**\n```bash\nnix develop\n```\n\n### Running\n\n1. **Install Dependencies**\n   ```bash\n   pnpm install\n   ```\n\n2. **Run Frontend Only** (UI dev server)\n   ```bash\n   pnpm dev\n   ```\n   - Vite dev server: http://localhost:1420\n\n3. **Run Desktop App** (Tauri)\n   ```bash\n   pnpm tauri dev\n   ```\n   \u003e Automatically starts both UI and backend\n\n### Building\n\n```bash\npnpm build\npnpm tauri build\n```\n\n\n## Documentation\n\n- **Documentation Index**: `docs/README.md`\n- **v2 Architecture (Essential Reading)**: `docs/architecture-v2.md`\n- **Improvement Plans (Performance/Lock-free, etc.)**: `docs/improvements.md`\n\n\n## About Prism\n\n**Prism** is a macOS virtual audio splitter that assigns per-application audio to a 64-channel bus. **Spectrum** acts as the mixer/router, taking those channels as input sources and routing them to output devices.\n\nFor Prism build/install/usage instructions: see `prism/README.md`\n\n\n## License\n\nSpectrum is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetitstrawberry%2Fspectrum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetitstrawberry%2Fspectrum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetitstrawberry%2Fspectrum/lists"}