{"id":18620715,"url":"https://github.com/codybloemhard/termdaw","last_synced_at":"2025-05-07T08:23:36.962Z","repository":{"id":240813313,"uuid":"364549624","full_name":"codybloemhard/termdaw","owner":"codybloemhard","description":"A daw, in a terminal.","archived":false,"fork":false,"pushed_at":"2024-05-25T23:41:04.000Z","size":1709,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T08:07:01.263Z","etag":null,"topics":["audio","audio-processing","cli","daw","digital-audio-workstation","dsp","music","rust","tui"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"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/codybloemhard.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}},"created_at":"2021-05-05T11:11:07.000Z","updated_at":"2025-03-29T15:34:55.000Z","dependencies_parsed_at":"2024-12-27T07:03:07.536Z","dependency_job_id":null,"html_url":"https://github.com/codybloemhard/termdaw","commit_stats":null,"previous_names":["codybloemhard/termdaw"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codybloemhard%2Ftermdaw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codybloemhard%2Ftermdaw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codybloemhard%2Ftermdaw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codybloemhard%2Ftermdaw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codybloemhard","download_url":"https://codeload.github.com/codybloemhard/termdaw/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252840165,"owners_count":21812253,"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":["audio","audio-processing","cli","daw","digital-audio-workstation","dsp","music","rust","tui"],"created_at":"2024-11-07T04:07:47.106Z","updated_at":"2025-05-07T08:23:36.940Z","avatar_url":"https://github.com/codybloemhard.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# termdaw\n\nA daw, in a terminal.\nTermdaw is a (or should become a) terminal, graph based programmable pipeline\ndigital audio workstation that is friendly to automatization and algorithmic composition.\n\n## MVP Goals\n\n- Audio\n  - [x] Render audio\n    - Any samplerate: will up or down sample from project rate\n    - 8, 16, 24 or 32 bit bitdepth\n  - [x] Play back audio\n- Terminal UX Workflow\n  - [x] Controls: play, pause, stop\n  - [x] Controls: set/get time, dash in time\n  - [x] Controls: refresh, render\n  - [x] View: Terminal logging, warnings, errors, colors\n  - [x] Toml configuration\n- Streaming Workflow\n  - [x] Streaming mode (input through stdin)\n- Structure\n  - [x] Sample Bank\n  - [x] Floww Bank\n  - [x] Graph rendering structure\n- Base Vertex, with:\n  - [x] Gain\n  - [x] Panning\n  - [x] Input summation\n- Vertex types\n  - [x] Sum vertex\n  - [x] Normalize vertex\n  - [x] Sample loop vertex\n  - [x] Envelope vertex\n  - [x] Sample multi vertex\n  - [x] Sample lerp vertex\n  - [x] Lv2 fx vertex\n  - [ ] Lv2 midi instrument vertex\n  - [x] Debug Sine synth vertex\n  - [x] Simple synth vertex\n  - [x] Wavetable synth vertex\n  - [x] Band pass/cut vertex\n- Floww\n  - [x] Read from midi\n  - [ ] Read floww from floww description\n  - [x] Read binary floww from stdin stream\n  - [ ] Read human readable floww from stdin stream\n- Lua\n  - [x] To configure the project (sample rate, etc)\n  - [x] Load resources (samples and plugins)\n  - [x] Construct graph\n  - [x] Refreshable: remove old, add new, keep same\n- Docs\n  - [x] Config documentation\n  - [x] Examples\n\n## Goals for later\n\n- [ ] Multitype graph\n  - [ ] In/Out ports\n  - [ ] Type checker\n  - [ ] Stereo type\n  - [ ] Mono type\n  - [ ] Floww type\n  - [ ] Value type\n- [ ] Value automation\n- [ ] Lufs mastering tool\n- [ ] Linear interpolation of floww notes\n- [ ] Better scrolling through time handling of on/off notes\n- [ ] Split vertex\n- [ ] Active toggle on vertices\n- [ ] Disable completely dry vertices\n- [ ] Prune disabled vertices from the graph\n- [ ] Multithreading\n- [ ] Bounded normalization in absence of the lv2 feature\n\n## Failed\n\n- [ ] Bounded normalization: lv2 plugin's output can have more gain than input, no way to know how much.\n\n## Example\n\n```toml\n[project]\nname = \"Example Project\"\n\n[settings]\nbuffer_length = 1024\nproject_samplerate = 48000\nmain = \"project.lua\"\n```\n\n```lua\n-- Our lua file, where we do all the work\nset_length(3.0);\nset_render_samplerate(44100);\nset_render_bitdepth(16);\nset_output_file(\"outp.wav\");\n\nload_sample(\"snare\", \"/home/cody/doc/samples/drumnbass/snare-1/snare-1-v-9.wav\");\nload_sample(\"kick\", \"/home/cody/doc/samples/drumnbass/kick/kick-v-9.wav\");\n\nadd_sampleloop(\"one\", 1.0, 0.0, \"snare\");\nadd_sampleloop(\"two\", 1.0, 0.0, \"kick\");\nadd_normalize(\"sum\", 1.0, 0.0);\n\nconnect(\"one\", \"sum\");\nconnect(\"two\", \"sum\");\n\nset_output(\"sum\");\n```\n\n## License\n\n```\nCopyright (C) 2024 Cody Bloemhard\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodybloemhard%2Ftermdaw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodybloemhard%2Ftermdaw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodybloemhard%2Ftermdaw/lists"}