{"id":19199686,"url":"https://github.com/arximboldi/psychosynth","last_synced_at":"2025-07-16T03:39:34.651Z","repository":{"id":33240549,"uuid":"36884884","full_name":"arximboldi/psychosynth","owner":"arximboldi","description":"GNU Psychosynth is a a synthesizer and modular audio framework inspired by the ideas of the Reactable.","archived":false,"fork":false,"pushed_at":"2021-03-06T09:33:20.000Z","size":40440,"stargazers_count":59,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-31T20:12:05.599Z","etag":null,"topics":["3d","audio","framework","gnu","synthesizer"],"latest_commit_sha":null,"homepage":"http://psychosynth.com","language":"C++","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/arximboldi.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"arximboldi","patreon":"sinusoidal","custom":["paypal.me/sinusoidal","sinusoid.al"]}},"created_at":"2015-06-04T17:19:17.000Z","updated_at":"2024-04-16T16:35:10.000Z","dependencies_parsed_at":"2022-08-26T07:40:35.084Z","dependency_job_id":null,"html_url":"https://github.com/arximboldi/psychosynth","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arximboldi%2Fpsychosynth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arximboldi%2Fpsychosynth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arximboldi%2Fpsychosynth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arximboldi%2Fpsychosynth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arximboldi","download_url":"https://codeload.github.com/arximboldi/psychosynth/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253172161,"owners_count":21865472,"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":["3d","audio","framework","gnu","synthesizer"],"created_at":"2024-11-09T12:28:25.447Z","updated_at":"2025-05-09T01:23:16.603Z","avatar_url":"https://github.com/arximboldi.png","language":"C++","funding_links":["https://github.com/sponsors/arximboldi","https://patreon.com/sinusoidal","paypal.me/sinusoidal","sinusoid.al"],"categories":[],"sub_categories":[],"readme":"GNU Psychosynth\n===============\n\n[![GNU](http://www.gnu.org/graphics/gnubanner-2.png)](http://www.gnu.org)\n[![GPL](https://psychosynth.com/images/gplv3.png)](http://gplv3.fsf.org/)\n\nThe Psychosynth project aims to create an interactive modular\nsoft-synth inspired by the ideas of the Reactable. We will try to\nprovide a clean object oriented API to allow the creation of new\ninnovative interfaces for the synthetizer and a 3D simulator of a\nReactable-alike device with support for collaborative music creation\nover the internet.\n\n**Official website**: http://psychosynth.com\n\n![Screenshot](https://public.sinusoid.es/static/screens/psynth.png)\n\nThis package provides\n---------------------\n\n  * **libpsynth**: This is a powerful modern C++ library for the\n    building of synthesis software. Type-safe audio buffer and I/O\n    abstractions, inspired by\n    [Boost.GIL](https://boost.org/libs/gil),\n    a generic system modular synthesis engine, classes for the\n    synchronization of synths over the network using OSC, a framework\n    for easy application creation, among other stug....\n\n  * **psynth3d**: An interactive synth with an look similar to the\n    Reactable's and a 3D interface which makes use of all the power of\n    libpsynth.\n\n  * **psynth**: A command line version of the synth that can be used\n      as OSC server or client with low resource usage.\n\n\nDepdencies\n----------\n\nTo try the software you will need these third party libraries and programs:\n\n   * GNU Autotools (only for the development version)\n   * Ogre (needed by the 3D interface)\n   * CEGUI (needed by the 3D interface)\n   * OIS (needed by the 3D interface)\n   * liblo (needed for the network support)\n   * libxml2 (needed for XML config support)\n   * Alsa (needed for ALSA sound output)\n   * Jack (needed for Jack sound ouput)\n   * libsndfile (needed for pcm file support)\n   * libvorbis (needed for OGG vorbis file support)\n   * SoundTouch (needed for sample stretching)\n   * Boost\n\nIn Debian and Ubuntu you can install all those dependencies with the\nfollowing command. Anyways, I suggest installing `liblo` from the\noriginal sources because the version in the repositories is outdated\nand contains a bug:\n\n```\n  sudo apt install cmake libogre-1.9-dev libois-dev \\\n                   libcegui-mk2-dev libasound2-dev libjack-dev \\\n                   liblo-dev libsndfile-dev libxml2-dev \\\n                   libsoundtouch-dev libvorbis-dev libboost-dev\n```\n\nInstalling\n----------\n\nThis project uses the [CMake](http://cmake.org/) build system generator.\nTo compile from sources, do:\n\n```\n  mkdir build \u0026\u0026 cd build\n  cmake .. -DCMAKE_BUILD_TYPE=Release\n  cmake --build .\n```\n\nYou can then **install** the software by doing\n\n```\n  sudo cmake --build . -t install\n```\n\nYou may customize the installation folder by passing\n`-DCMAKE_INSTALL_PREFIX=\u003cdestination-folder\u003e` to the `cmake ..`\ncommand.  There are other settings you can pass with\n`-D\u003csetting\u003e=value`, you may list all of them with `cmake .. -LH`.\nAlso, there are other things you can do besides building or\ninstalling, see `cmake --build -t help` to list all possible targets.\n\nLicense\n-------\n\n\u003e  Copyright (C) 2007-2015 Juan Pedro Bolívar Puente\n\u003e\n\u003e  This program is free software: you can redistribute it and/or\n\u003e  modify it under the terms of the GNU General Public License as\n\u003e  published by the Free Software Foundation, either version 3 of the\n\u003e  License, or (at your option) any later version.\n\u003e\n\u003e  This program is distributed in the hope that it will be useful,\n\u003e  but WITHOUT ANY WARRANTY; without even the implied warranty of\n\u003e  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\u003e  GNU General Public License for more details.\n\u003e\n\u003e  You should have received a copy of the GNU General Public License\n\u003e  along with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farximboldi%2Fpsychosynth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farximboldi%2Fpsychosynth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farximboldi%2Fpsychosynth/lists"}