diff --git a/website/src/pages/learn/samples.mdx b/website/src/pages/learn/samples.mdx index 6630a862..129f6474 100644 --- a/website/src/pages/learn/samples.mdx +++ b/website/src/pages/learn/samples.mdx @@ -19,7 +19,7 @@ Strudel allows loading samples in the form of audio files of various formats (wa By default, strudel comes with a built-in "sample map", providing a solid base to play with. - + Here, we are using the `s` function to play back different default samples (`bd`, `sd`, `hh` and `misc`) to get a drum beat. @@ -60,15 +60,15 @@ If we look at the `samples` tab, we can see that the drum samples are all prefix We _could_ use them like this: - + ... but thats obviously a bit much to write. Using the `bank` function, we can shorten this to: - + You could even pattern the bank to switch between different drum machines: -")`} /> +")`} /> Behind the scenes, `bank` will just prepend the drum machine name to the sample name with `_` to get the full name. This of course only works because the name after `_` (`bd`, `sd` etc..) is standardized. @@ -80,17 +80,17 @@ If we look again at the `samples` tab, there is also a number behind each name, For example `RolandTR909_hh(4)` means there are 4 samples of a TR909 hihat available. By default, `s` will play the first sample, but we can selecting the other ones using `n`, starting from 0: -")`} /> +")`} /> Numbers that are too high will just wrap around to the beginning -")`} /> +")`} /> Here, 0-3 will play the same sounds as 4-7, because `RolandTR909_hh` only has 4 sounds. Selecting sounds also works inside the mini notation, using "`:`" like this: - + # Loading Custom Samples