https://github.com/nafeu/phrakturemusic
Collection of projects associated with music production using code
https://github.com/nafeu/phrakturemusic
Last synced: about 2 months ago
JSON representation
Collection of projects associated with music production using code
- Host: GitHub
- URL: https://github.com/nafeu/phrakturemusic
- Owner: nafeu
- License: mit
- Created: 2024-11-23T04:01:14.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-23T04:01:20.000Z (6 months ago)
- Last Synced: 2025-03-23T16:43:47.590Z (about 2 months ago)
- Language: Csound Document
- Size: 432 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PhraktureMusic
A collection of projects associated with code/scripting-based music production
---
## Prerequisites
This project requires the following tools:
1. [Csound](https://csound.com)
2. [SoX (Sound eXchange)](http://sox.sourceforge.net)
3. [Rubber Band](https://breakfastquay.com/rubberband/)Make sure these tools are installed before proceeding.
---
## Installation Instructions (macOS)
```
git clone https://github.com/nafeu/phrakturemusic.git
cd phrakturemusic
```### Install Csound
```bash
brew install csound
```### Install Sound eXchange and Rubberband (optional)
```bash
brew install sox
brew install rubberband
```---
## Usage
Run the `sandbox.csd` file with `Csound`
```
csound sandbox.csd
```Open the `output.wav` file.
### Additional Processing
Time Stretching
```
rubberband -t 20 output.wav output_stretched.wav
```Reverse
```
sox output_stretched.wav output_stretched_reversed.wav reverse
```