gensound icon indicating copy to clipboard operation
gensound copied to clipboard

Pythonic audio processing and generation framework

Results 13 gensound issues
Sort by recently updated
recently updated
newest added

Consider the following code (version 0.4): ```python from gensound.filters import SimpleLPF,SimpleHPF w = WAV(test_wav) w[0] *= SimpleHPF(1000) w[1] *= SimpleLPF(1000) ```` Upon mixdown, Gensound computes the HPF twice (!). Why...

optimization
library core

[This page](https://github.com/Quefumas/gensound/wiki/Melodic-Shorthand-Notation#a-single-note) shows the following notation: However it doesn't appear that one is able to use strings as inputs to the `frequency` argument if that string consists of numeric values:

I am trying to use the below code to allow playing of a sequence of chords, each having different number of notes in them. ``` import numpy as np import...