{"id":16759044,"url":"https://github.com/shockham/audact","last_synced_at":"2025-08-14T19:28:28.081Z","repository":{"id":62438355,"uuid":"93438871","full_name":"shockham/audact","owner":"shockham","description":"Minimalist synth and sequencing lib","archived":false,"fork":false,"pushed_at":"2020-10-08T18:40:07.000Z","size":82,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T15:01:58.110Z","etag":null,"topics":["chiptune","rust-lang","rust-library","synth"],"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/shockham.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}},"created_at":"2017-06-05T19:29:00.000Z","updated_at":"2023-09-02T06:17:31.000Z","dependencies_parsed_at":"2022-11-01T22:01:31.496Z","dependency_job_id":null,"html_url":"https://github.com/shockham/audact","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shockham%2Faudact","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shockham%2Faudact/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shockham%2Faudact/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shockham%2Faudact/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shockham","download_url":"https://codeload.github.com/shockham/audact/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248261916,"owners_count":21074225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["chiptune","rust-lang","rust-library","synth"],"created_at":"2024-10-13T04:07:06.244Z","updated_at":"2025-04-10T17:14:38.817Z","avatar_url":"https://github.com/shockham.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# audact\n[![crates.io version](https://img.shields.io/crates/v/audact.svg)](https://crates.io/crates/audact)\n[![Build status](https://travis-ci.org/shockham/audact.svg?branch=master)](https://travis-ci.org/shockham/audact)\n[![Documentation](https://docs.rs/audact/badge.svg)](https://docs.rs/audact)\n\nMinimalist synth and sequencing lib\n\nContains:\n- Simple sine, square, saw and noise waveforms.\n- Hard-edge cut-off filters.\n- Basic sequencing of a single pattern.\n\nUsage:\n\n```rust\nextern crate audact;\n\nuse audact::notes::std_note_freq;\nuse audact::system::{Audact, Processing, Wave};\n\nfn main() {\n    let mut audact = Audact::new(16, 120, 4f32);\n\n    let default_processing = Processing::default();\n    let n_1 = std_note_freq(0);\n    let n_2 = std_note_freq(2);\n\n    audact.channel(\n        Wave::Sine,\n        1f32,\n        default_processing,\n        vec![\n            n_1, 0f32, 0f32, 0f32,\n            n_1, 0f32, 0f32, 0f32,\n            n_1, 0f32, 0f32, 0f32,\n            n_1, 0f32, 0f32, 0f32,\n        ],\n    );\n    audact.channel(Wave::Square, 1f32, default_processing,\n        vec![\n            0f32, 0f32, n_2, 0f32,\n            0f32, 0f32, n_2, 0f32,\n            0f32, 0f32, n_2, 0f32,\n            0f32, 0f32, n_2, 0f32,\n        ],\n    );\n\n    audact.start(1);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshockham%2Faudact","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshockham%2Faudact","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshockham%2Faudact/lists"}