Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bberak/diy-synthesizer
A simple NodeJS synthesizer for Raspberry PI 🎵🎹
https://github.com/bberak/diy-synthesizer
Last synced: 26 days ago
JSON representation
A simple NodeJS synthesizer for Raspberry PI 🎵🎹
- Host: GitHub
- URL: https://github.com/bberak/diy-synthesizer
- Owner: bberak
- License: mit
- Created: 2020-05-29T09:26:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-07T01:25:43.000Z (4 months ago)
- Last Synced: 2024-07-07T02:33:33.292Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 10.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DIY Synthesizer 🎵🎹
A simple NodeJS synthesizer for Raspberry PI
## Raspberry PI Prerequisities
- Make sure audio output is set to the audio jack, not HDMI (unless your screen has speakers)
- Install ALSA header files: `sudo apt-get install libasound2-dev`
- Speech to text engine: `sudo apt-get install gnustep-gui-runtime`## Getting Started
```
git clone https://github.com/bberak/diy-synthesizer.git
cd diy-synthesizer
npm install
npm run start
```## Making Sure The Synthesizer Is Always Running
Copy the example service file to the `systemd` folder:
```
sudo cp src/diy-synthesizer.service /etc/systemd/system/diy-synthesizer.service
```> Make sure you change the contents of this file to reference paths in your environment.
Enable and start the servie:
```
systemctl enable diy-synthesizer # follow the prompts
systemctl start diy-synthesizer # follow the prompts
systemctl status diy-synthesizer.service # make sure service is active (running)
```Finally, reboot to see it in action and test that it works.
> [This article will help you debug in case of problems](https://community.chakralinux.org/t/how-to-investigate-systemd-errors/7024)
To disable and stop the service:
```
systemctl stop diy-synthesizer # follow the prompts
systemctl disable diy-synthesizer # follow the prompts
```## Built with open source tools 💕
- [node-sfx](https://github.com/bberak/node-sfx)
- [audio-generator](https://github.com/audiojs/audio-generator)
- [audio-speaker](https://github.com/audiojs/audio-speaker)## License
MIT License
Copyright (c) 2020 Boris Berak
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.