GiorgioRegni / Binaural-Beats

Brainwaves entrainment, auto hypnosis & lucid dreaming with an Android phone
http://binauralbeatstherapy.wordpress.com/
GNU General Public License v3.0
189 stars 58 forks source link

Future presets (possible) #4

Closed thegreenman closed 11 years ago

thegreenman commented 13 years ago

List of possible future presets taken from requests (facebook, android market, etc...) Scheduled: Insomnia 1 -SMR (Sensory motor rhythm - hovering around 14 hz) entrainment, to help with chronic insomnia. cm Insomnia 2 -Beta to Theta entrainment session to help one relax and fall asleep. cm Lucid Dreaming. gr Possible: DNA activation (aka solfeggio 396 417 528 639 741 852) - not sure how we implement this. cm

GiorgioRegni commented 12 years ago

Hi thegreenman, have you been working on some of those presets?

thegreenman commented 12 years ago

yeah I've got some, has the format changed since the update?

GiorgioRegni commented 12 years ago

Hi Chris, I don't think so. If there are changes they are really minor. I have a local version with fade in/out for voices but didn't have time to commit. Do you need it?

Giorgio

On Sun, Jan 29, 2012 at 1:58 AM, Chris J Maler reply@reply.github.com wrote:

yeah I've got some, has the format changed since the update?

Chris J Maler The Green Man Garden & Landscape Inc. Tel 954-892-6007 www.thegreenman.us chris@thegreenman.us Vcardhttps://docs.google.com/open?id=0B-VRUB9_YwY4MmJmNTFlYzMtNzk3Ny00YmJjLWI1OWYtZTYwYjlhNmY4NDAy

reviews at Google Placeshttp://maps.google.com/maps/place?cid=17913134355252302561&q=The+Green+Man+Garden+%26+Landscape+Inc.,+9715+West+Broward+Blvd,+%23240,+Plantation,+FL+33324&hl=en&ie=UTF8&ll=26.316156,-80.793304&spn=0.000615,0.000687&t=w&z=11&vpsrc=0  and Yahoo Localhttp://local.yahoo.com/info-28457603-green-man-garden-landscape-plantation

On Thu, Jan 26, 2012 at 4:24 PM, Giorgio Regni < reply@reply.github.com

wrote:

Hi thegreenman, have you been working on some of those presets?


Reply to this email directly or view it on GitHub:

https://github.com/GiorgioRegni/Binaural-Beats/issues/4#issuecomment-3676963


Reply to this email directly or view it on GitHub: https://github.com/GiorgioRegni/Binaural-Beats/issues/4#issuecomment-3705381

Giorgio Regni CTO Scality http://www.scality.com -- Don't think that a small group of dedicated individuals can't change the world; it's the only thing that ever has.

thegreenman commented 12 years ago

Not for SMR or Beta to theta, but to do the DNA activation It calls for multi voice fade in out overlap. Also to do the Schumann resonance corrcetly it should be multi-voice.

I'll post the ones I have below

thegreenman commented 12 years ago

Removed multi-voices on sleep induction....as they are not helpful

public static Program Sleep_Induction(Program p) { p.setDescription("Insomnia relief for use at bed time" + " 6 minute drop into delta then 54 minutes of relaxing delta "); p.setAuthor("@thegreenman);

           p.addPeriod(new Period(360, SoundLoop.UNITY, 0.7f, null).
                           addVoice(new BinauralBeatVoice(9.7f, 3.4f, 0.6f)).
             setV(new Aurora())
           ).

           p.addPeriod(new Period(1620, SoundLoop.UNITY, 0.7f, null).
                           addVoice(new BinauralBeatVoice(3.4f, 2.4f, 0.6f)).
             setV(new Aurora())
           ).

           p.addPeriod(new Period(1620, SoundLoop.UNITY, 0.7f, null).
                           addVoice(new BinauralBeatVoice(2.4f, 3.4f, 0.6f)).
             setV(new Aurora())
           );
           return p;
   }

***I've updated this as I located more accurate literature that shows SMR is 8-12 Alpha and not @14 as I previously thought.

public static Program SMR(Program p) { p.setDescription("Insomnia relief through stimulating Sensory Motor Rhythm. Not for use at bed time" + " 61 minutes of crossing frequencies from 8 to 12 hz."); p.setAuthor("@thegreenman);

           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 8f, 0.6f)).
             addVoice(new BinauralBeatVoice(12f, 12f, 0.5f)).
             setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 10f, 0.5f)).
             addVoice(new BinauralBeatVoice(12f, 10f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(10f, 12f, 0.6f)).
                     addVoice(new BinauralBeatVoice(10f, 8f, 0.5f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(12f, 12f, 0.5f)).
             addVoice(new BinauralBeatVoice(8f, 8f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(12f, 10f, 0.6f)).
             addVoice(new BinauralBeatVoice(8f, 10f, 0.5f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(10f, 8f, 0.5f)).
             addVoice(new BinauralBeatVoice(10f, 12f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(333, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 10f, 0.6f)).
             addVoice(new BinauralBeatVoice(12f, 10f, 0.5f)).
                           setV(new Morphine())
           ).
thegreenman commented 12 years ago

Do you have a working lucid dreaming program?

I've been playing around with one which I can add.

thegreenman commented 12 years ago

public static Program Lucid_Dreams(Program p) { p.setDescription("Stimulates lucid dreaming. Play while sleeping" + " 5hz base frequency with 8 hz spikes."); p.setAuthor("@thegreenman);

           p.addPeriod(new Period(60, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(10f, 8f, 0.6f)).
             setV(new Morphine())
           ).
           p.addPeriod(new Period(60, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 8f, 0.6f)).
             setV(new Morphine())
           ).
           p.addPeriod(new Period(60, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 6f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(60, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(6f, 6f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(120, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(6f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(360, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 8f, 0.6f))..
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(180, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 8f, 0.6f))..
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(90, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 8f, 0.6f))..
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
            p.addPeriod(new Period(240, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 8f, 0.6f))..
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
            p.addPeriod(new Period(480, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 8f, 0.6f))..
                           setV(new Morphine())
           ).
           p.addPeriod(new Period(10, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(8f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
            p.addPeriod(new Period(360, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 5f, 0.6f)).
                           setV(new Morphine())
           ).
            p.addPeriod(new Period(480, SoundLoop.NONE, 0.7f, null).
                           addVoice(new BinauralBeatVoice(5f, 12f, 0.6f)).
                           setV(new Morphine())
           );
           return p;
   }
thegreenman commented 12 years ago

Giorgio, I want to create my own visualization for these. I have the images in mind, similar to aurora, but I'm not sure how you animated the aurora one. I definitely dont want to use the morphine one for the smr.

thegreenman commented 12 years ago

public static Program Shamanic_Rhythm(Program p) { p.setDescription("Shamanic Drum Rhythm" + "Begin at 9hz then glide down to 4.5hz for 50 minutes and back up at the end."); p.setAuthor("@thegreenman);

    p.addPeriod(new Period(300, SoundLoop.WHITE_NOISE, 0.7f, null).
            addVoice(new BinauralBeatVoice(9f, 4.5f, 0.6f)).
            setV(new HypnoFlash())
    ).
    p.addPeriod(new Period(3000, SoundLoop.WHITE_NOISE, 0.7f, null).
            addVoice(new BinauralBeatVoice(4.5f, 4.5f, 0.6f)).
            setV(new HypnoFlash())
    ).
    p.addPeriod(new Period(300, SoundLoop.WHITE_NOISE, 0.7f, null).
            addVoice(new BinauralBeatVoice(4.5f, 9f, 0.6f)).
            setV(new HypnoFlash())
    );

    return p;
}
GiorgioRegni commented 12 years ago

Great, I will try to commit those presets today.

GiorgioRegni commented 12 years ago

OK, all set and commited in 454e908

thegreenman commented 12 years ago

where did the smr preset go?

GiorgioRegni commented 12 years ago

code done, any specific image you want on those presets?

thegreenman commented 12 years ago

The Egg image is for noVis presets like lucid dreaming. the Warp image is for a modified Morphene Vis.

GiorgioRegni commented 12 years ago

Could you reupload the warp image, I couldn't find it. Thanks

thegreenman commented 12 years ago

uploaded to the forum here http://www.binaural-beats.ihunda.com/forum/viewtopic.php?f=4&t=12&p=106#p106