faxinadu / synthesizer

Virtual analog synthesizer for Python

Home Page:https://pypi.python.org/pypi/synthesizer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python synthesizer Build Status Documentation Status

  • 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 = [261.626,  329.628, 391.996]
>>> 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 = [261.626,  329.628, 391.996]
>>> 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

About

Virtual analog synthesizer for Python

https://pypi.python.org/pypi/synthesizer

License:GNU General Public License v3.0


Languages

Language:Python 100.0%