Last active
April 23, 2016 10:55
-
-
Save tado/323581a8cc771c13241b to your computer and use it in GitHub Desktop.
Tidalでライブコーディング! - 実践編 ref: http://qiita.com/yoppa/items/5f1f9a033f1273e33242
This file contains 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
d1 $sound "bd" |
This file contains 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
d1 $sound "bd bd" |
This file contains 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
d1 $ stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3", | |
sound "bass ~ bass:3 ~", | |
sound "[~ cp]*4" | |
] |
This file contains 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
d1 $ | |
stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3" |+| gain "1.0", | |
sound "bass ~ bass:3 ~" |+| gain "1.2", | |
sound "[~ cp]*4"|+| gain "0.9" |+| pan rand | |
] |
This file contains 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
d1 $ | |
jux (rev) $ | |
stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3" |+| gain "1.0", | |
sound "bass ~ bass:3 ~" |+| gain "1.2", | |
sound "[~ cp]*4"|+| gain "0.8" |+| pan rand | |
] |
This file contains 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
d1 $ | |
jux (rev) $ | |
chop 16 $ | |
stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3" |+| gain "1.0", | |
sound "bass ~ bass:3 ~" |+| gain "1.2", | |
sound "[~ cp]*4"|+| gain "0.8" |+| pan rand | |
] |
This file contains 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
d1 $ | |
jux (rev) $ | |
every 4 (chop 16) $ | |
every 6 (gap 16) $ | |
stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3" |+| gain "1.0", | |
sound "bass ~ bass:3 ~" |+| gain "1.2", | |
sound "[~ cp]*4"|+| gain "0.8" |+| pan rand | |
] |
This file contains 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
d1 $ | |
jux (iter 4) $ | |
every 4 (chop 16) $ | |
every 6 (gap 16) $ | |
stack[ | |
sound "bd:3 [sn:1*2] ~ bd:3" |+| gain "1.0", | |
sound "bass ~ bass:3 ~" |+| gain "1.2", | |
sound "[~ cp]*4"|+| gain "0.8" |+| pan rand | |
] |
This file contains 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
d1 $sound "bd*2" |
This file contains 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
d1 $sound "bd*4" |
This file contains 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
d1 $ sound "bd:1 sn:3" |
This file contains 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
d1 $ sound "bd:1 sn:3 ~ sn:3" |
This file contains 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
d1 silence |
This file contains 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
d1 $ sound "bd:3 [sn:1*2] ~ bd:3" |
This file contains 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
d1 $ sound "bd [[sn:1*2] bd] [sn:1 [bd*2]]" |
This file contains 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
stack[patten1, pattern2, pattern3....] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment