- C# 54.2%
- HTML 24.8%
- TypeScript 18.1%
- JavaScript 1.7%
- CSS 1.1%
- Other 0.1%
| .opencode | ||
| Flacify.Analysis | ||
| Flacify.API | ||
| Flacify.ClientApi | ||
| Flacify.Console | ||
| Flacify.Core | ||
| Flacify.Infrastructure | ||
| Flacify.Mobile | ||
| Flacify.Server | ||
| Flacify.Tests | ||
| Flacify.Web | ||
| Tools/ScrapeDriveOffsets | ||
| .gitignore | ||
| AGENTS.md | ||
| CHANGELOG.md | ||
| docker-compose.yml | ||
| drive-offsets.bin | ||
| Flacify.sln | ||
| LICENSE | ||
| README.md | ||
| TODO.md | ||
Flacify
Multi-project music toolbox: CD ripper, music server, CRC database, project website. Built for Linux with .NET 10.
Quick start
dotnet build
dotnet run --project Flacify.Console # CD ripper
dotnet run --project Flacify.Console -- --test # rip single track (dev)
dotnet run --project Flacify.API # CRC database API
dotnet run --project Flacify.Server # music server
dotnet run --project Flacify.Web # project website
Projects
Flacify.Console — CD → FLAC ripper (v1.1.0)
Linux CD ripper with MusicBrainz metadata lookup, AccurateRip CRC verification, and a keyboard-driven Terminal.Glue TUI. Multi-disc album support, automatic drive offset correction (4,798 drives from AccurateRip), genre management, and first-run setup wizard.
Dependencies: cdparanoia, flac, eject
Flacify.Server — Music server (v1.0.2)
Subsonic-compatible music server with Blazor frontend. Stream your library over the network. 30 Subsonic endpoints, play tracking with listening history, radio stations, starring/favorites, artist discography sync from MusicBrainz, and a stats dashboard.
docker build -t flacify-server Flacify.Server
Flacify.API — CRC database (v1.0.0)
Open CRC database for CD rip verification. Accepts and serves AccurateRip CRCs submitted by users.
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/health |
Server status and counts |
| POST | /api/v1/submit |
Submit CRC data (100/hr per IP) |
| GET | /api/v1/lookup |
Lookup a disc by CRC ID or TOC fields |
Flacify.Web — Project website
Blazor Server landing page with project cards, live stats, CD ripper docs with screenshots, CRC database lookup, manifest format specification, and API reference.
Project structure
| Directory | Description |
|---|---|
Flacify.Console/ |
CD ripper (Terminal.Glue TUI) |
Flacify.Server/ |
Subsonic music server (Blazor) |
Flacify.API/ |
CRC database REST API |
Flacify.Core/ |
Shared models and interfaces |
Flacify.Infrastructure/ |
Data layer, scanner, infrastructure |
Flacify.Web/ |
Project website |
Flacify.Tests/ |
Integration tests |
Tools/ |
ScrapeDriveOffsets utility |
License
MIT — see LICENSE.