{"id":21689225,"url":"https://github.com/spotlightkid/ykchorus","last_synced_at":"2026-02-23T18:36:56.675Z","repository":{"id":151391377,"uuid":"161684868","full_name":"SpotlightKid/ykchorus","owner":"SpotlightKid","description":"A chorus audio effect plugin based on DSP code by Togu Audio Line (TAL)","archived":false,"fork":false,"pushed_at":"2024-05-27T13:00:49.000Z","size":758,"stargazers_count":46,"open_issues_count":2,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-09-01T02:43:53.775Z","etag":null,"topics":["audio","chorus","dpf","dssi","effect","jackaudio","ladspa","lv2","lv2-plugin","vst"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SpotlightKid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2018-12-13T19:22:20.000Z","updated_at":"2025-07-04T12:19:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"5e531cce-eb59-437b-bec9-12bc07f33c5f","html_url":"https://github.com/SpotlightKid/ykchorus","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/SpotlightKid/ykchorus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fykchorus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fykchorus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fykchorus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fykchorus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpotlightKid","download_url":"https://codeload.github.com/SpotlightKid/ykchorus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fykchorus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29750723,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","chorus","dpf","dssi","effect","jackaudio","ladspa","lv2","lv2-plugin","vst"],"created_at":"2024-11-25T17:22:00.996Z","updated_at":"2026-02-23T18:36:56.653Z","avatar_url":"https://github.com/SpotlightKid.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YK Chorus\n\nA chorus effect inspired by the one found in certain well-known Japanese\nvintage analog synthesizers (**Y**ou **K**now which).\n\n![screenshot](screenshot.png)\n\n\n## Formats\n\nThis audio effect supports a variety of audio and plug-in frameworks:\n\n* CLAP\n* DSSI\n* JACK (stand-alone program with GUI)\n* LADSPA\n* LV2\n* VST2\n* VST3\n\n\n## Compiling\n\nMake sure, you have installed the required build tools and libraries (see\nsection \"Prerequisites\" below) and then clone this repository (including\nsub-modules) and simply run `make` in the project's root directory:\n\n    $ git clone --recursive https://github.com/SpotlightKid/ykchorus.git\n    $ cd ykchorus\n    $ make\n\n\n## Installation\n\nTo install all plugin formats to their appropriate system-wide location, run\nthe following command (root priviledges may be required):\n\n    make install\n\nThe makefiles support the usual `PREFIX` and `DESTDIR` variables to change the\ninstallation prefix and set an installation root directory (defaulty: empty).\n`PREFIX` defaults to `/usr/local`, but on macOS and Windows it is not used,\nsince the system-wide installation directories for plugins are fixed.\n\nUse make's `-n` option to see where the plugins would be installed without\nactually installing them.\n\nYou can also set the installation directory for each plugin format with a\ndedicated makefile variable.\n\n* CLAP: `CLAP_DIR` (`\u003cprefix\u003e/lib/clap`)\n* LADSPA: `LADSPA_DIR` (`\u003cprefix\u003e/lib/ladspa`)\n* LV2: `LV2_DIR` (`\u003cprefix\u003e/lib/lv2`)\n* VST2: `VST2_DIR` (`\u003cprefix\u003e/lib/vst`)\n* VST3: `VST3_DIR` (`\u003cprefix\u003e/lib/vst3`)\n\nExample: `make DESTDIR=/tmp/build-root VST_DIR=/usr/lib/lxvst install`\n\nTo install the plugins only for your current user account, run\n`make install-user`.\n\nAgain, you can also set the installation directory for each plugin format with\na dedicated makefile variable.\n\n* CLAP: `USER_CLAP_DIR` (`$HOME/.clap`)\n* LADSPA: `USER_LADSPA_DIR` (`$HOME/.ladspa`)\n* LV2: `USER_LV2_DIR` (`$HOME/.lv2`)\n* VST2: `USER_VST2_DIR` (`$HOME/.vst`)\n* VST3: `USER_VST3_DIR` (`$HOME/.vst3`)\n\n*Note: The given default values for all of the above listed environment\nvariables differ depending on the target OS.*\n\n\n## Prerequisites\n\n* The GCC C++ compiler and the usual associated software build tools\n  (`make`, etc.).\n\n  Debian / Ubuntu users should install the `build-essential` package\n  to get these.\n\n* `patch`\n\n* [pkgconf]\n\nThe [CLAP], [LV2], [LADSPA], [VST]2 (vestige) and VST3 headers are included in\nthe [DPF] framework, which is integrated as a Git sub-module. These need not be\ninstalled separately to build the software in the respective plug-in formats.\n\nSome formats do have additional dependencies, though:\n\n* JACK client (stand-alone command line program): [JACK] development library\n  and headers and pkgconf file.\n* GUI (JACK, LV2, VST2): OpenGL development library and headers and pkgconf\n  file (provided by the `libglvnd` or similar package on Linux). On Linux also\n  X11 development library and headers and pkgconf file.\n\nOptional (only needed for checking plugins after building them):\n\n* [lv2lint]\n* [KXStudio LV2 Extensions]\n\n\n## License\n\nThis software is distributed under the GNU General Public License Version 2.\n\nSee the file `LICENSE` for more information.\n\n\n## Author\n\nThis software project was put together by *Christopher Arndt*.\n\n\n## Acknowledgements\n\nChorus DSP engine taken from the [TAL Noisemaker] software synthesizer by\nPatrick Kunz, Togu Audio Line, Inc., released under the GPL-2.0.\n\nBuild using the DISTRHO Plugin Framework ([DPF]) and set up with the\n[cookiecutter-dpf-effect] project template.\n\n[Toggle switch] image by \"az\" from *Knob Gallery*, licensed under the\n**Creative Commons CC-BY** license, [rotary knob] image by \"geoghela\",\npublished to the **CC0 Public Domain**.\n\n[clap]: https://cleveraudio.org/\n[cookiecutter-dpf-effect]: https://github.com/SpotlightKid/cookiecutter-dpf-effect\n[dpf]: https://github.com/DISTRHO/DPF\n[dssi]: http://dssi.sourceforge.net/\n[jack]: http://jackaudio.org/\n[kxstudio lv2 extensions]: https://github.com/KXStudio/LV2-Extensions\n[ladspa]: http://www.ladspa.org/\n[liblo]: http://liblo.sourceforge.net/\n[lv2]: http://lv2plug.in/\n[lv2lint]: https://open-music-kontrollers.ch/lv2/lv2lint/\n[pkgconf]: https://github.com/pkgconf/pkgconf\n[rotary knob]: https://www.g200kg.com/en/webknobman/gallery.php?m=p\u0026p=1200\n[tal noisemaker]: https://tal-software.com/products/tal-noisemaker\n[toggle switch]: https://www.g200kg.com/en/webknobman/gallery.php?m=p\u0026p=58\n[vst]: https://en.wikipedia.org/wiki/Virtual_Studio_Technology\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspotlightkid%2Fykchorus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspotlightkid%2Fykchorus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspotlightkid%2Fykchorus/lists"}