adam-broussard / SoundNebula

A project to take input galaxy simulation data and play sounds corresponding to the state and events occuring in the simulation.
1 stars 0 forks source link

Find a Python library which can be used to mix and/or synthesize sounds #2

Open adam-broussard opened 5 years ago

adam-broussard commented 5 years ago

Synthesizers:

  1. PySynth
  2. PyPI

A Big List

Mixers:

  1. PyAudioMixer
  2. python-rtmixer (Github)
  3. PyDub
  4. Snack Sound Toolkit
  5. PyGame (Has a sound package)
youngant commented 5 years ago

pydub seems to do everything we want: https://github.com/jiaaro/pydub

Pitch shifting example: https://stackoverflow.com/questions/43963982/python-change-pitch-of-wav-file Mixing: https://stackoverflow.com/questions/4039158/mixing-two-audio-files-together-with-python