A simple virtual analog synthesizer.
Project description
Python synthesizer
- Virtual analog synthesizer.
Installation
$ pip install synthesizer
Install dependencies
Ubuntu
$ apt install portaudio19-dev
$ pip install pyaudio
macOS
$ brew install portaudio
$ pip install pyaudio
Basic usage
Play 440Hz sine wave
>>> from synthesizer import Player, Synthesizer, Waveform
>>> player = Player()
>>> player.open_stream()
>>> synthesizer = Synthesizer(osc1_waveform=Waveform.sine, osc1_volume=1.0, use_osc2=False)
# Play A4
>>> player.play_wave(synthesizer.generate_constant_wave(440.0, 3.0))
Play chord
# Play C major
>>> chord = ["C3", "E3", "G3"]
>>> player.play_wave(synthesizer.generate_chord(chord, 3.0))
# You can also specify frequencies to play just intonation
>>> chord = [440.0, 550.0, 660.0]
>>> player.play_wave(synthesizer.generate_chord(chord, 3.0))
Specify audio device
>>> player.enumerate_device()
# index: 00, name: "Built-in Microphone", rate: 44100
# index: 01, name: "Built-in Output", rate: 44100
# index: 02, name: "UA-25EX 44.1kHz", rate: 44100
>>> player.open_stream(device_name="UA-25EX")
Write wav file
>>> from synthesizer import Writer
>>> writer = Writer()
>>> chord = ["C4", "E4", "G4"]
>>> wave = synthesizer.generate_chord(chord, 3.0)
>>> writer.write_wave("path/to/your.wav", wave)
Supported OS
- macOS 10.12 and above
- Ubuntu 16.04
Supported versions
- Python 2.7
- Python 3.4 and above
Author
License
- GPL v3 License
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
synthesizer-0.2.0.tar.gz
(5.4 kB
view details)
File details
Details for the file synthesizer-0.2.0.tar.gz
.
File metadata
- Download URL: synthesizer-0.2.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78ef2923ded53f4e6cfa661115ee5ada8b67cefe600815dd228578f03651d0f9 |
|
MD5 | 861611698524506d6f2501be57c6c55a |
|
BLAKE2b-256 | 82231e0aef5575169c296e21d82038e1c8aed53bdb5a1b43849dd4bc83c2099a |