File: bend_simple.mg

package info (click to toggle)
midge 0.2.41%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 556 kB
  • sloc: perl: 5,508; modula3: 1,204; lisp: 869; makefile: 36; sh: 20
file content (27 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (6)
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
@head {
	$tempo 120
	$time_sig 4/4
}

@body {
	@channel 1 "bass" {
		$patch bass_fg

		%repeat 4 {

			/l3:8/a3=>b-3=>a3 # Bend from a3 up to b-3 and back down to a3
                              # with the bend amount increasing/decreasing
                              # linearly over the duration of 3 eighth notes.
                              # By default, the bend is done over 16 steps
                              # per quarter note (giving 24 here). This can
                              # be changed using the `-b' command line switch.
		
			/l8/g3 r /l32/d /l3:32/e /l8/g a
		}
	}

	@channel 10 "tamborine" {
		%repeat 4 { /l4r4/tamb }
	}
}