1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
As mentioned earlier, `alv` doesn't produce sound by itself. Instead, it is
paired with other tools, and takes the role of a 'Conductor', sending commands
and sequencing other tools.
For the sake of this guide, we will be controlling [Pilot][pilot], a simple
UDP-controlled synthesizer. You can go ahead and download and open it now.
You should see a small window with a bunch of cryptic symbols and a little
command line at the bottom. To verify that everything is working so far,
try typing in `84c` and hitting enter. This should play a short sound (the note
4C, played by the 8th default synthesizer voice in Pilot).
To talk to Pilot from `alv`, we will use the [pilot/][] module. Note that for
this module to work, you have to have the `osc` and `luasocket` dependencies
installed. To play the same sound we played by entering `84c` above every 0.5
seconds, we can use [time/every][] to send a `bang` to [pilot/play][]:
(import* time)
(import pilot)
(pilot/play (every 0.5) 8 4 'c')
You can play with the voice, octave and note values a bit. To add a simple
melody, we can use [util/switch][], which will cycle through a list of
parameters when used together with [time/tick][]:
(import* time util)
(import pilot)
(pilot/play (every 0.5) 8 4
(switch (tick 0.5) 'c' 'd' 'a' 'f'))
Now we can have the voice change every other loop as well:
(import* time util)
(import pilot)
(pilot/play (every 0.5)
(switch (tick 4) 8 9)
4 (switch (tick 0.5) 'c' 'd' 'a' 'f'))
To round off the sound a bit, we can turn on Pilot's reverb using
[pilot/effect][]. Add the following somewhere in your file:
(pilot/effect "REV" 2 8)
Now it's time to add some rhythm. The kick drum is voice 12 by default,
and we can also add something like a snare on channel 3:
(pilot/play (every 0.75)
12 2 'd' 3)
(pilot/play (every 2)
13 4 'a' 4)
Note that since we are using multiple individual [time/every][] instances,
the timing of our voices relative to each other is not aligned - each voice
started playing when the file was first saved with it added, and kept the
rhythmn since. By deleting all their tags and re-saving the file, we can force
`alv` to re-instantiate them all at the same time, thereby synchronising
them.
[pilot]: https://github.com/hundredrabbits/Pilot
|