Skip to content

Instantly share code, notes, and snippets.

@jonathangraham
Created October 8, 2012 20:33
Show Gist options
  • Save jonathangraham/3854800 to your computer and use it in GitHub Desktop.
Save jonathangraham/3854800 to your computer and use it in GitHub Desktop.
(ns noiz.core
(:use [overtone.live]))
(def oceanwavescrushing (sample (freesound-path 48412)))
(oceanwavescrushing)
(def spamsound (sample (freesound-path 166774)) )
(spamsound :rate 1)
(stop)
(def tibetanchant (sample (freesound-path 15488)))
(tibetanchant :loop? true)
(stop)
(def notresponsible (sample (freesound-path 33711)))
(notresponsible :rate 1 :vol 12)
(def alienwhisper (sample (freesound-path 9665)))
(alienwhisper :loop? true)
(kill 24)
(def drumnbass (sample (freesound-path 40106)))
(drumnbass :loop? true)
(def dnb (drumnbass :loop? true))
(ctl dnb :vol 2)
(ctl dnb :rate 1)
(def tibet (tibetanchant :loop? true))
(ctl tibet :vol 0)
(ctl tibet :rate 0.5)
(def alien (alienwhisper :loop? true))
(ctl alien :vol 0)
(ctl alien :rate 1)
(def intro (sample (freesound-path 9690)))
(intro :rate 1)
(def grenade (sample (freesound-path 33245)))
(grenade :rate 0.5 :vol 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment