├── .gitignore ├── interface.png ├── license.txt └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | *.obj 3 | *.exe 4 | *.pdb 5 | *.user 6 | *.aps 7 | *.pch 8 | *.vspscc 9 | *_i.c 10 | *_p.c 11 | *.ncb 12 | *.suo 13 | *.sln.docstates 14 | *.tlb 15 | *.tlh 16 | *.bak 17 | *.cache 18 | *.ilk 19 | *.log 20 | *.sdf 21 | *.vsp 22 | *.opensdf 23 | *.o 24 | [Bb]in 25 | [Dd]ebug*/ 26 | test-results/ 27 | *.lib 28 | *.sbr 29 | obj/ 30 | intermediate*/ 31 | [Rr]elease*/ 32 | _ReSharper*/ 33 | [Tt]est[Rr]esult* 34 | Build/* 35 | packages/* 36 | .vs*/ 37 | Builds/Current/* -------------------------------------------------------------------------------- /interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdemarOrn/CloudSeed/aa546ba39861a8883fb94522b599a537f5751ea0/interface.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Valdemar Erlingsson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Cloud Seed has moved to a new home 2 | 3 | For the latest version of Cloud Seed, please visit **[Ghost Note Audio](https://ghostnoteaudio.uk/products/cloudseed)**. 4 | 5 | This is my new business, where Cloud Seed development will continue and new versions will be published. 6 | 7 | ![](interface.png) 8 | 9 | Cloud Seed is an algorithmic reverb plugin built in C# and C++ for emulating huge, endless spaces and modulated echoes. The algorithms are based on the same principles as manu classic studio reverb units from the 1980's, but Cloud Seed does not attempt to model any specific device, or even to be a general-purpose reverb plugin at all. It is best employed as a special effect, for creating thick, lush pads out of simple input sounds. 10 | 11 | ## Cloud Seed Core - Open Source 12 | 13 | If you are interested in using Cloud Seed in your own software, you can download the latest version of the core algorithm from the repository: 14 | 15 | https://github.com/GhostNoteAudio/CloudSeedCore 16 | 17 | ## Legacy Code 18 | 19 | If you would like to study the legacy C# code and the original Cloud Seed plugin, the last released version is available on this branch: 20 | 21 | https://github.com/ValdemarOrn/CloudSeed/tree/legacy-v1 22 | 23 | 24 | --------------------------------------------------------------------------------