https://github.com/cmdcolin/freqmod
A simple frequency modulation synthesizer
https://github.com/cmdcolin/freqmod
Last synced: about 1 month ago
JSON representation
A simple frequency modulation synthesizer
- Host: GitHub
- URL: https://github.com/cmdcolin/freqmod
- Owner: cmdcolin
- Created: 2015-11-27T19:35:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-24T16:54:10.000Z (over 9 years ago)
- Last Synced: 2025-03-04T23:31:12.917Z (over 1 year ago)
- Language: C
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
Awesome Lists containing this project
README
# freqmod
A realtime synthesizer designed around pipes
## Build
make
## Requires
ncurses
sox
## Usage
freqmod | play -c 1 -r 44100 -b 16 -q -t raw -e signed-integer -
freqmod outputs raw audio data, hence the specified parameters to play
freqmod | tee >(sox -q -e signed-integer -b16 -c1 -r44100 -t raw - test.wav) >(sox -q -e signed-integer -b16 -c1 -r44100 -t raw - -d) > /dev/null
play and create test.wav at same time