Hi Guys! I am the developer of the myNoise website and just want to say that all your comments are a great source of inspiration today: many suggestions for further improvements will be taken into account! Although I did entirely code the website by my own using a simple text editor, I am not a programmer, in the sense that I never learned how to program efficiently and beautifully. Multiplatform issues, and mobile b…
Frequency-shaped background noise generators
41–50 of 114 posts
Re: Frequency-shaped background noise generators
#42Nice!! A request: Can you add Pink Noise?: http://en.wikipedia.org/wiki/Pink_noise One (of various youtube examples) here: http://www.youtube.com/watch?v=ZXtimhT-ff4
Re: Frequency-shaped background noise generators
#43Re: Frequency-shaped background noise generators
#44Nice!! A request: Can you add Pink Noise?: http://en.wikipedia.org/wiki/Pink_noise One (of various youtube examples) here: http://www.youtube.com/watch?v=ZXtimhT-ff4
Re: Frequency-shaped background noise generators
#45Use the geotag browser and listen to the wilderness of your choice! http://freesound.org/browse/geotags/
Re: Frequency-shaped background noise generators
#46Needs Birdsong: http://www.bbc.co.uk/news/magazine-22298779 Everything feels better when listening to the Dawn Chorus.
There is something like this currently under development. There is a problem though: my noise generators are supposedly active across the whole hearing range, from 20Hz to 20kHz. And birds are only producing frequencies above 1000Hz. So, I need to fill up the bottom sliders with other sounds, or find... really big birds! ;-)
Re: Frequency-shaped background noise generators
#47Hi Guys! I am the developer of the myNoise website and just want to say that all your comments are a great source of inspiration today: many suggestions for further improvements will be taken into account! Although I did entirely code the website by my own using a simple text editor, I am not a programmer, in the sense that I never learned how to program efficiently and beautifully. Multiplatform issues, and mobile b…
Thanks for doing this, I'm going to use this page a lot, I think. But have you thought about open sourcing some, if not all of the code? With the source code out on for instance github, a lot of people could help you out wherever you feel your own skills come to short.
Re: Frequency-shaped background noise generators
#48Re: Frequency-shaped background noise generators
#49Earlier quoted context omitted.
It loads 20 or so ogg audio files like this: http://mynoise.net/Data/OSMOSIS/7a.ogg Then I'm guessing the EQ controls the volume. So no it doesn't generate / stream anything to you server-side.
Right, the EQ controls the volume of each of the 10 (each one corresponds to a slider) sounds. (Every sound has been previously decomposed into its frequency components.) The Web Audio API is used for browsers that have it present, else HTML5 audio elements are used. The slider just adjusts the volume of the sound (exponentially of course!), leading to an equalizer effect with no filtering required. (Garnered from lo…