{"id":21689212,"url":"https://github.com/spotlightkid/dfzitarev1","last_synced_at":"2025-04-12T09:25:25.377Z","repository":{"id":151390970,"uuid":"350374962","full_name":"SpotlightKid/dfzitarev1","owner":"SpotlightKid","description":"A feedback-delay-network reverb plugin built with DPF and based on FAUST library demo code","archived":false,"fork":false,"pushed_at":"2024-11-25T15:50:36.000Z","size":265,"stargazers_count":15,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-26T04:23:07.495Z","etag":null,"topics":["audio-effect","clap","clap-plugin","dpf","faust-dsp","ladspa","ladspa-plugin","lv2","lv2-plugin","reverb","vst-plugin","vst2","vst3","vst3-plugin","zita-rev1"],"latest_commit_sha":null,"homepage":"","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.md","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-03-22T14:31:36.000Z","updated_at":"2024-12-26T01:57:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"c54d5512-31f3-48b1-89d5-6adf2de7fb33","html_url":"https://github.com/SpotlightKid/dfzitarev1","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fdfzitarev1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fdfzitarev1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fdfzitarev1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpotlightKid%2Fdfzitarev1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpotlightKid","download_url":"https://codeload.github.com/SpotlightKid/dfzitarev1/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248545163,"owners_count":21122092,"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-effect","clap","clap-plugin","dpf","faust-dsp","ladspa","ladspa-plugin","lv2","lv2-plugin","reverb","vst-plugin","vst2","vst3","vst3-plugin","zita-rev1"],"created_at":"2024-11-25T17:21:56.843Z","updated_at":"2025-04-12T09:25:25.344Z","avatar_url":"https://github.com/SpotlightKid.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DF Zita Rev1\n\nA feedback-delay-network reverb plugin built with [DPF] and based on a [FAUST]\nlibrary demo.\n\n\u003cp align=\"center\"\u003e\u003cimg title=\"Generic LV2 UI in Carla\"\n  src=\"screenshot-carla.png\" width=\"541\"\u003e\u003c/center\u003e\n\nFor a description of the parameters, please refer to the documentation of the\noriginal [zita-rev1] software.\n\n## Formats\n\nThis plugin is available in the following plug-in formats by default:\n\n* [CLAP] (`de.chrisarndt.dfzitarev1`)\n* [LV2] (`https://chrisarndt.de/plugins/dfzitarev1`)\n* [VST3][vst] (`dfzitarev1.vst3`)\n\nThe following formats are not built by default, but can be enabled when\ncompiling (see [\"Compiling\"](#compiling)):\n\n* [LADSPA] (`dfzitarev1-ladspa.so`)\n* [VST2][vst] (`dfzitarev1-vst.so`)\n\nThe plugin depends on the host to provide a generic UI to control parameters.\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/dfzitarev1.git\n    $ cd dfzitarev1\n    $ make\n\nTo enable building additional plugin formats, which are not enabled by default\n(LADSPA, VST2), pass `BUILD_LADSPA=true` resp. `BUILD_VST2=true` to make. For\nexample:\n\n    make BUILD_VST2=true\n\nThe same settings must be passed to `make install` to also install optional\nplugin formats.\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 BUILD_VST2=true VST2_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 makefile\nvariables differ depending on the target OS.*\n\n\n## Prerequisites\n\n* The GCC C++ compiler, library 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, Arch users the `base-devel` meta package.\n\n* `patch`\n\n* [pkgconf]\n\n* The [faustdoctor] post-processor and [FAUST] (optional)\n\nThe [CLAP], [LV2], [LADSPA], [VST2][vst] (Xaymar VST2SDK) and [VST3][vst]\nheaders are included in the [DPF] framework, which is integrated as a Git\nsub-module. These need not be installed separately to build the software in\nthe respective plug-in formats.\n\n`faustdoctor` and FAUST are only needed to re-generate C++ source and header\nfiles if the FAUST DSP source files in the `faust` directory are changed.\n\n\n## Author\n\nThis software was put together by *Christopher Arndt*.\n\n\n## License\n\nThis plugin is released under the *MIT License*. Please see the\n[LICENSE.md](./LICENSE.md) file for details.\n\n\n## Acknowledgements\n\nThe DSP code is generated from the FAUST sources via the [faustdoctor]\npost-processor and uses the [dm.zita_rev1] demo from the FAUST library, written\nby Julius O. Smith III [^1], which is a re-implementation of [zita-rev1] by Fons\nAdriaensen, writen in C++.\n\nThe project is built using the DISTRHO Plugin Framework ([DPF]) and set up\nwith the [dpf-faust-project-template].\n\n\n[^1]: https://ccrma.stanford.edu/~jos/book2000/Zita_Rev1.html\n\n[clap]: https://cleveraudio.org/\n[dpf-faust-project-template]: https://github.com/SpotlightKid/dpf-faust-project-template\n[dm.zita_rev1]: https://faustlibraries.grame.fr/libs/demos/#dmzita_rev1\n[dpf]: https://github.com/DISTRHO/DPF\n[faust]: https://faust.grame.fr/\n[faustdoctor]: https://github.com/SpotlightKid/faustdoctor\n[ladspa]: https://www.ladspa.org/\n[lv2]: http://lv2plug.in/\n[pkgconf]: https://github.com/pkgconf/pkgconf\n[vst]: https://en.wikipedia.org/wiki/Virtual_Studio_Technology\n[zita-rev1]: https://kokkinizita.linuxaudio.org/linuxaudio/zita-rev1-doc/quickguide.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspotlightkid%2Fdfzitarev1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspotlightkid%2Fdfzitarev1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspotlightkid%2Fdfzitarev1/lists"}