{"id":50484407,"url":"https://github.com/polarity/plugin.nih.polarity-sc-dark","last_synced_at":"2026-06-01T20:31:49.493Z","repository":{"id":359369553,"uuid":"1215169955","full_name":"polarity/plugin.nih.polarity-sc-dark","owner":"polarity","description":"Spectral Compressor with per-bin upward and downward compression, pink-noise shaping, sidechain spectral matching, freeze, and IR export. Download VST3 and CLAP for Windows, macOS, and Linux.","archived":false,"fork":false,"pushed_at":"2026-05-21T14:39:48.000Z","size":565,"stargazers_count":20,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-21T23:43:06.365Z","etag":null,"topics":["audio-processing","clap","plugin","vst3"],"latest_commit_sha":null,"homepage":"https://polarity.productions/polarity-sc","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/polarity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-04-19T15:16:09.000Z","updated_at":"2026-05-21T14:52:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/polarity/plugin.nih.polarity-sc-dark","commit_stats":null,"previous_names":["polarity/plugin.nih.polarity-sc-dark"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/polarity/plugin.nih.polarity-sc-dark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polarity%2Fplugin.nih.polarity-sc-dark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polarity%2Fplugin.nih.polarity-sc-dark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polarity%2Fplugin.nih.polarity-sc-dark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polarity%2Fplugin.nih.polarity-sc-dark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/polarity","download_url":"https://codeload.github.com/polarity/plugin.nih.polarity-sc-dark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polarity%2Fplugin.nih.polarity-sc-dark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33793032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-processing","clap","plugin","vst3"],"created_at":"2026-06-01T20:31:47.561Z","updated_at":"2026-06-01T20:31:49.488Z","avatar_url":"https://github.com/polarity.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Polarity-SC-Dark\n\nPolarity-SC-Dark is an FFT-based spectral compressor built on top of a\nvendored NIH-plug snapshot. The repository is organized as a plugin project\nfirst: the product crate lives in `plugin/`, and the framework crates it\ndepends on live in `framework/`.\n\nThe current plugin feature set is intentionally focused on three compressor\nmodes:\n\n- Pink Noise\n- Sidechain Matching\n- Sidechain Compression\n\nFreeze and IR export remain part of the compressor workflow.\n\n![Screenshot](Polarity-SC-Dark.png)\n\n## Repository Layout\n\n| Path | Purpose |\n| --- | --- |\n| `plugin/` | Polarity-SC-Dark crate: DSP, GUI, entry points, assets |\n| `framework/nih_plug/` | Vendored NIH-plug core framework crate |\n| `framework/nih_plug_derive/` | Vendored NIH-plug derive macros |\n| `framework/nih_plug_vizia/` | Vendored VIZIA integration used by the plugin |\n| `framework/nih_plug_xtask/` | Vendored bundling/tooling library |\n| `framework/xtask/` | `cargo xtask` entry point |\n| `framework/cargo_nih_plug/` | Optional `cargo nih-plug` wrapper |\n| `docs/` | Project-specific technical notes |\n| `docs/user-feedback` | Feature Requests and Reports by users. Each user a markdown file |\n\n\n## Build\n\nAfter installing [Rust](https://rustup.rs/), bundle the plugin with:\n\n```shell\nrustup run stable cargo xtask bundle polarity_sc_dark --release\n```\n\nArtifacts are written to `target/bundled/`.\n\nTo build just the plugin crate:\n\n```shell\nrustup run stable cargo build -p polarity_sc_dark\n```\n\nTo run the standalone binary:\n\n```shell\nrustup run stable cargo run -p polarity_sc_dark --bin polarity_sc_dark_standalone --release\n```\n\n## GUI Development\n\nThe plugin theme lives at `plugin/src/editor/theme.css`. Use the `hot-reload`\nfeature to load the CSS from disk at runtime:\n\n```shell\ncargo run -p polarity_sc_dark --bin polarity_sc_dark_standalone --features hot-reload\n```\n\nClose and reopen the editor window after editing `plugin/src/editor/theme.css`.\n\n## Notes\n\n- All vendored NIH-plug crates live under `framework/` because I like it.\n- `bundler.toml` is intentionally scoped to this single plugin.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolarity%2Fplugin.nih.polarity-sc-dark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolarity%2Fplugin.nih.polarity-sc-dark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolarity%2Fplugin.nih.polarity-sc-dark/lists"}