Live data from Hacker News

Binaural beats

en.wikipedia.org

1–10 of 49 posts

Re: Binaural beats

#5

Here's some software for generating them; http://gnaural.sourceforge.net/ http://discord.sourceforge.net/ http://sbagen.sourceforge.net/ http://entrainer.sourceforge.net/

Or, since this is Hacker News, you can use ChucK, which is a realtime programming language for processing audio:

    SinOsc left => dac.left;
    SinOsc right => dac.right;
    300 => left.freq;
    310 => right.freq;
    while (1) 1::second => now;

Re: Binaural beats

#6

Here's some software for generating them; http://gnaural.sourceforge.net/ http://discord.sourceforge.net/ http://sbagen.sourceforge.net/ http://entrainer.sourceforge.net/

I used rhybag, from the author of sbagen, to create a melody for a song I've yet to finish writing. It's a very cool tool.

Re: Binaural beats

#9

Here's some software for generating them; http://gnaural.sourceforge.net/ http://discord.sourceforge.net/ http://sbagen.sourceforge.net/ http://entrainer.sourceforge.net/

Some good, more general purpose and programmer-y alternatives:

ChucK => http://chuck.cs.princeton.edu/

Pure Data => http://puredata.info/

SuperCollider => http://supercollider.sourceforge.net/

Re: Binaural beats

#10
post #7

This can be easily heard on a piano. Just play two adjacent low notes at the same time and volume.

No, it's different. That's a real beating effect. This is an phenomenon that happens when the two tones are heard separately in each ear and the beating just happens in your head. It tells us that our auditory system retains some waveform data, up to about 1000 Hz.
Post reply on HN