{"id":24071006,"url":"https://github.com/markrosemaker/audacity-go","last_synced_at":"2025-10-27T09:47:39.334Z","repository":{"id":139677118,"uuid":"263907619","full_name":"MarkRosemaker/audacity-go","owner":"MarkRosemaker","description":"This go package lets you control Audacity by using scripting/macros.","archived":false,"fork":false,"pushed_at":"2020-05-14T18:01:26.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T21:23:40.488Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://manual.audacityteam.org/man/scripting.html","language":"Go","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/MarkRosemaker.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}},"created_at":"2020-05-14T12:22:49.000Z","updated_at":"2024-09-26T12:11:08.000Z","dependencies_parsed_at":"2024-04-15T22:09:15.788Z","dependency_job_id":null,"html_url":"https://github.com/MarkRosemaker/audacity-go","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MarkRosemaker/audacity-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkRosemaker%2Faudacity-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkRosemaker%2Faudacity-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkRosemaker%2Faudacity-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkRosemaker%2Faudacity-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarkRosemaker","download_url":"https://codeload.github.com/MarkRosemaker/audacity-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarkRosemaker%2Faudacity-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281248543,"owners_count":26468575,"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","status":"online","status_checked_at":"2025-10-27T02:00:05.855Z","response_time":61,"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":[],"created_at":"2025-01-09T16:24:14.349Z","updated_at":"2025-10-27T09:47:39.302Z","avatar_url":"https://github.com/MarkRosemaker.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# audacity-go\n\nThis go package lets you control Audacity by using scripting/macros.\n\n## Usage\n\n```go\nimport audacity \"github.com/MarkRosemaker/audacity-go\"\n```\n\nAfter your program is done using all the Audacity commands, make sure to call `ClosePipes()` to close the pipes to and from Audacity.\n\n## Example\n\n```go\ndefer audacity.ClosePipes()\n\n// some code, e.g. a loop\n\npath := \"D:/audio/myfile.m4a\"\n\naudacity.RemoveTracks() // clear the project\naudacity.Import(path) // import the file\naudacity.SelectAll() // select all for noise reduction to be applied\naudacity.NoiseReduction() // apply noise reduction\naudacity.Normalize() // normalize the audio\n\ntarget := strings.Replace(path, \".m4a\", \".mp3\", 1)\naudacity.Export(target) // export the project to mp3 (or whatever extension target has)\n```\n\n## Progress\n\nThis repository is not fully done nor sufficiently tested.\n\nTo be done:\n\n- [x] connecting to pipes on a windows system\n- [x] implementation of universal `Command(cmd string, args ...string) Response` function\n- [x] implementation of basic commands\n- [ ] implementation of more commands\n- [ ] automatic starting of Audacity if it's not running, i.e. pipes are not found\n- [ ] testing and implementation with non-windows system\n\nPull requests are very welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkrosemaker%2Faudacity-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkrosemaker%2Faudacity-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkrosemaker%2Faudacity-go/lists"}