This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL / www.quasecinema.org | |
# skeleton with flesh and light v07 | |
# Sonic Pi 2.11 / 31-July-2016 | |
# http://freesound.org/people/Snapper4298/sounds/176991/ | |
phone = '/Users/rangel/pisamples/phone.wav'; load_sample phone | |
#http://freesound.org/people/Snapper4298/sounds/176991/ | |
hatopen = '/Users/rangel/pisamples/hat_open.wav'; load_sample hatopen | |
use_bpm 61 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL 'syncing, singing' v04 | |
use_bpm 122; set_volume! 1.111 | |
with_fx :compressor, slope_above: 0.8, slope_below: 1.1 do | |
live_loop :notasA1 do | |
use_random_seed (Time.new.min * Time.new.sec) | |
use_synth :chipbass | |
with_fx :echo,phase: [0.5,1,2,3,4].choose do | |
play scale(:c2, :spanish).choose, pan: -0.4, | |
amp: 0.5, attack: 0.1 | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# alexandre rANGEL / www.quasecinema.org | |
# this is not not a siren v14 | |
# Sonic Pi 2.11 / 24-July-2016 | |
set_volume! 0.5; use_bpm 30; set_sched_ahead_time! 2 | |
use_random_seed Time.new.sec * Time.new.min * Time.new.hour | |
akai = '/Users/rangel/pisamples/akai_note58.aiff'; load_sample akai | |
# http://www.freesound.org/people/modularsamples/sounds/280911/ | |
siren = '/Users/rangel/pisamples/dubsiren.wav'; load_sample siren | |
# http://www.freesound.org/people/modularsamples/sounds/280911/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL / www.quasecinema.org | |
# freed-v05 | |
# Sonic Pi 2.11 / 17-July-2016 | |
set_volume! 1.2 | |
munch = '/Users/rangel/pisamples/munching.flac' | |
# http://www.freesound.org/people/lazr2012/sounds/169606 | |
load_sample munch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL / www.quasecinema.org | |
# robot confirmative v03 | |
# Sonic Pi 2.11 / 10-July-2016 | |
robot = '/Users/rangel/pisamples/robot_confirmative.flac' | |
# http://www.freesound.org/people/sfstorm/sounds/275577/ | |
load_sample robot | |
live_loop :robot1 do | |
sample robot, rate: rrand(0.94,1.02) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL / www.quasecinema.org | |
# mystic breath v06 | |
# Sonic Pi 2.10 / 3-July-2016 | |
mistic = '/Users/rangel/pisamples/synth_mistic.wav' | |
load_sample mistic | |
water = '/Users/rangel/pisamples/water_rural.wav' | |
load_sample water | |
set_volume! 1.87 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexanddre rANGEL | |
# 我的回應你 'group echo' v06 | |
# 26 jun 2016 | |
# Sonic Pi 2.10 | |
use_bpm 128/2.0 | |
set_volume! 0.65 | |
# influence the composition: throw a time based dice | |
time = Time.new |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL "what's this flux of thoughts I call I?" v16 | |
# www.quasecinema.org | |
# 12 June 2016 / Sonic Pi 2.10 | |
set_volume! 0.8 | |
use_bpm 600 | |
clock = 0 | |
sample_metalhit = '/Users/rangel/pisamples/metalhit.wav' #http://www.freesound.org/people/niqoplitnouk/sounds/220063/ | |
sample_triangle = '/Users/rangel/pisamples/triangle.wav' #http://www.freesound.org/people/nicolasdrweski/sounds/179625/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#let's play this for 24 hours | |
#Alexandre rANGEL www.quasecinema.org | |
t = Time.new | |
tx = t.year * t.month * t.day * t.hour * t.min * t.sec | |
use_random_seed tx | |
puts 'the magic number now is... ' | |
puts t | |
puts tx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alexandre rANGEL | |
# www.quasecinema.org | |
# "glitter v19" | |
# 5 June 2016 | |
# Sonic Pi 2.10 | |
use_bpm 72 | |
t = Time.new | |
myt = (t.year * t.month * t.day * t.hour * t.min * t.sec) |