Replies: 3 comments
-
Thanks! It's great to hear people are using this. Actually, there already exists white noise, use Note that this class generates the samples randomly and independently in the range As for pink noise, I think I can implement it quite easily and push without even having to wait for the next version. In case you happen to have a handy formula for pink noise, feel free to share, that will probably speed me up considerably. |
Beta Was this translation helpful? Give feedback.
-
@steeley I've just committed a provisional Here is a usage example: from gensound import WhiteNoise, PinkNoise
# play 3 secs of pink noise followed by 3 secs of white noise
(PinkNoise(3e3) | WhiteNoise(3e3)).play() |
Beta Was this translation helpful? Give feedback.
-
thanks looks good |
Beta Was this translation helpful? Give feedback.
-
this is quite a nice library, please keep developing!
(I tried PYO which is very good but could not get it to work with pulseaudio)
White noise and pink noise are important for me, I really need these in gensound
thanks
Beta Was this translation helpful? Give feedback.
All reactions