Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/tmhglnd/mercury
Browse files Browse the repository at this point in the history
  • Loading branch information
tmhglnd committed Jan 28, 2024
2 parents 2b0e219 + 2f3942b commit 2342b2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ new sample hat_909 time(3/16)
Make rhythmic patterns with sequences of numbers and probabilities

```java
ring loBeat [1 0 0 1 0.5]
ring hiBeat [0 1 0.2 0]
list loBeat [1 0 0 1 0.5]
list hiBeat [0 1 0.2 0]

new sample tabla_lo time(1/8) play(loBeat)
new sample tabla_hi time(1/8) play(hiBeat)
Expand All @@ -108,7 +108,7 @@ Generate psuedorandom melodic content for a synthesizer in a range and set a sca
set scale minor d
set randomSeed 31415

ring melody random(16 0 24)
list melody random(16 0 24)

new synth saw note(melody) time(1/16) shape(4 100)
```
Expand All @@ -134,12 +134,12 @@ Generate sequences algorithmically to compose complex structures and choose from
```java
set scale minor a

ring rhythm euclidean(32 13)
list rhythm euclidean(32 13)

ring melody spread(5 0 24)
ring melody palinedrome(melody)
ring melody clone(melody 0 5 7 3)
ring melody lace(melody melody)
list melody spread(5 0 24)
list melody palinedrome(melody)
list melody clone(melody 0 5 7 3)
list melody lace(melody melody)

new synth triangle note(melody 1) shape(1 80) play(rhythm)
```
Expand All @@ -155,7 +155,7 @@ new midi "Your Awesome Midi Device" time(1/4) note(7 1) length(100) sync(on)
Control other environments via OSC-messages

```java
ring params [0.25 0.5 0.75]
list params [0.25 0.5 0.75]

new emitter osc address(yourDevice) theParam(params) time(1/4)

Expand All @@ -169,7 +169,7 @@ new emitter osc address(yourDevice) theParam(params) time(1/4)
Easily control parameters in Mercury via external OSC-messages

```java
new synth triangle fx(reverb /extOSC/verbAmount) fx(filter low /extOSC/cutoff 0.4) time(1) shape(1 1000)
new synth triangle fx(reverb '/extOSC/verbAmount') fx(filter low '/extOSC/cutoff' 0.4) time(1) shape(1 1000)
```

**AND MANY MORE (TO COME...)**
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
theme: jekyll-theme-minimal
theme: jekyll-theme-slate

0 comments on commit 2342b2c

Please sign in to comment.