-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample-2.js
220 lines (191 loc) · 8.1 KB
/
example-2.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
const fs = require('fs')
const path = require('path')
const { FluidSession, plugins, techniques, tLibrary } = require('fluid-music')
const tr808 = require('@fluid-music/tr-808')
const kit = require('@fluid-music/kit')
const copy = techniques.AudioFile.copy
const kit808 = tr808.kit
const hatPats = require('./hat-pats')
const { StutterSoftOddEvents } = require('./Stutter')
const { MidiNote } = require('fluid-music/built/techniques')
const bpm = 83.25
const trapKit = { ...tr808.kit }
const trapKick = copy(kit.tLibrary.D, {
fadeOutSeconds: 0.2, // cross fade with bass
pitchSemitones: -1.59 // this just sounds good ¯\_(ツ)_/¯
})
const tambLibrary = {
t: kit.tLibrary.t,
2: new StutterSoftOddEvents(2, kit.tLibrary.t),
3: new StutterSoftOddEvents(3, kit.tLibrary.t),
4: new StutterSoftOddEvents(4, kit.tLibrary.t),
}
// timing adjustments
const clap = trapKit.p
trapKit.B = new techniques.AFOnset(trapKick, 0.01)
trapKit.p = new techniques.AFOnset(clap, 0.03)
trapKit.o = copy(trapKit.h, { gainDb: -3.5 }) // offbeat hi-hat
trapKit.r = new techniques.AFReverse(clap, 0.03) // reverse clap
// bass fades in
tr808.bass.b = copy(tr808.bass.g, { pitchSemitones: 4 })
tr808.bass.B = copy(tr808.bass.G, { pitchSemitones: 4 })
tr808.bass.f = copy(tr808.bass.g, { fadeInSeconds: 0.07 })
tr808.bass.F = copy(tr808.bass.G, { fadeInSeconds: 0.07 })
const ducker = new plugins.RoughRider3Vst2({
externalSidechainEnable: 1,
ratio: 8,
sensitivityDb: -20,
attackMs: 3,
releaseMs: 223,
})
const bassComp = new plugins.RoughRider3Vst2({
ratio: 4.2,
sensitivityDb: -17,
attackMs: 11,
releaseMs: 116,
makeupGainDb: 0,
mixPercent: 94,
})
const mainComp = new plugins.RoughRider3Vst2({
ratio: 1.5,
sensitivityDb: -27,
makeupGainDb: 0,
attackMs: 2,
mixPercent: 50,
releaseMs: 350,
})
const verb = new plugins.DragonflyRoomVst2({
dryLevelPercent: 0,
decaySeconds: 1.8,
lowBoostPercent: 0,
})
const delay16 = new plugins.ValhallaFreqEchoVst2({
wetDryPercent: 100,
sync: plugins.ValhallaFreqEchoVst2.parameterLibrary.sync.choices['1/16'],
})
const delay1 = new plugins.ValhallaFreqEchoVst2({
wetDryPercent: 100,
feedbackPercent: 0,
delayMs: 60000 / bpm,
})
// Create a tLibrary filled with MIDI Chords
const chordLibrary = {
A: new techniques.MidiChord({ notes: [47, 50, 59] }),
a: new techniques.MidiChord({ notes: [55, 62, 69] }),
B: new techniques.MidiChord({ notes: [38, 50, 57] }),
b: new techniques.MidiChord({ notes: [55, 62, 69] }),
C: new techniques.MidiChord({ notes: [33, 45, 52] }),
c: new techniques.MidiChord({ notes: [55, 64, 74] }),
D: new techniques.MidiChord({ notes: [38, 50, 55] }),
d: new techniques.MidiChord({ notes: [59, 64, 67] }),
E: new techniques.MidiChord({ notes: [43, 50, 55, 59] }),
}
const repeats = {
1: new StutterSoftOddEvents(1, new MidiNote({ note: 47 })),
2: new StutterSoftOddEvents(2, new MidiNote({ note: 47 })),
3: new StutterSoftOddEvents(3, new MidiNote({ note: 47 })),
4: new StutterSoftOddEvents(4, new MidiNote({ note: 47 })),
5: new StutterSoftOddEvents(5, new MidiNote({ note: 47 })),
6: new StutterSoftOddEvents(6, new MidiNote({ note: 47 })),
7: new StutterSoftOddEvents(7, new MidiNote({ note: 47 })),
}
const hatRepeats = {
1: new StutterSoftOddEvents(1, trapKit.h ),
2: new StutterSoftOddEvents(2, trapKit.h ),
3: new StutterSoftOddEvents(3, trapKit.h ),
4: new StutterSoftOddEvents(4, trapKit.h ),
5: new StutterSoftOddEvents(5, trapKit.h ),
6: new StutterSoftOddEvents(6, trapKit.h ),
7: new StutterSoftOddEvents(7, trapKit.h ),
}
// Instantiate a Podolski VST2 plugin from a preset
const padSynthA = plugins.podolskiVst2Presets.brightPad()
padSynthA.parameters.dly1CrossfeedPercent = 60
padSynthA.parameters.dly1MixPercent = 10
padSynthA.parameters.vcf0Cutoff = 22
const padSynthB = plugins.podolskiVst2Presets.brightPad()
padSynthB.parameters.vcf0Cutoff = 2
padSynthB.parameters.dly1MixPercent = 4
// padSynthB.parameters.osc1Tune = 12
// padSynthB.parameters.osc1TuneModDepth = 0
const padSynthSuper = new plugins.PodolskiVst2()
padSynthSuper.vst2.presetBase64 = fs.readFileSync(path.join(__dirname, 'presets', 'podo-superwave.FXP').toString('base64'))
padSynthSuper.parameters.osc1Tune = 12
padSynthSuper.parameters.osc1TuneModDepth = 0
// Create a Session, specifying beats-per-minute and track configuration
const session = new FluidSession({ bpm, loopStartTime: 1, loopDuration: 10 }, [
{ name: 'main', plugins: [mainComp], children: [
// In the first example, we specified a tLibrary in the score object. In this
// example, tLibrary objects are specified in the track objects.
{ name: 'drums', gainDb: -6, tLibrary: trapKit, children: [
{ name: 'snare', gainDb: -3, sends: [{ to: 'verb', gainDb: 0 }] },
{ name: 'clap', sends: [{ to: 'verb', gainDb: 0 }] },
{ name: 'kick', gainDb: -4, sends: [{ to: 'verb', gainDb: -8 }] },
{ name: 'hat', gainDb: -10 },
{ name: 'tamb', gainDb: -4, tLibrary: tambLibrary },
]},
{ name: 'bass', gainDb: -12, plugins: [bassComp], tLibrary: tr808.bass },
// Notice the pad tracks have a .plugins array containing the synthesizer
// preset. It also has a dedicated tLibrary containing MIDI chords.
{ name: 'pads', gainDb: -8, tLibrary: chordLibrary, sends: [{ to: 'verb', gainDb: 0 }, { to: 'delayHalf', gainDb: -12 }], children: [
{ name: 'padA', gainDb: -7, plugins: [padSynthA, ducker.sidechainWith('duck')] },
{ name: 'padB', gainDb: 0, plugins: [padSynthB] },
{ name: 'padC', gainDb: -12, plugins: [padSynthSuper] },
]},
{ name: 'verb', gainDb: -15, plugins: [verb] },
{ name: 'delay16', gainDb: 0, plugins: [delay16] },
{ name: 'delayHalf', gainDb: 0, plugins: [delay1, delay1] },
]},
{ name: 'mute', gainDb: -Infinity, children: [
{ name: 'duck', }
]}
])
const score = [{
r: '1 + 2 + 3 + 4 + ',//1 + 2 + 3 + 4 + '
snare: [' K K ', ' K K '],
clap: [' p p ', ' p p-r-'],
kick: ['B B B B', 'B B B B B '],
bass: ['g------- B--', 'g------- '],
hat: ['h h h h h h h h ', 'h h h h h h h '],
tamb: ['t t t t ', 't t t t '],
}, {
r: '1 + 2 + 3 + 4 + ',//1 + 2 + 3 + 4 + '
snare: [' K K ', ' K K ', ' K K ', ' K K '],
clap: [' p p ', ' p p-r-', ' p p ', ' p p-r-'],
kick: ['B B B B', 'B B B B B ', 'B B B B', 'B B B B B '],
bass: ['g------- B--', 'g------- ', 'g------- B--', 'g------- B--'],
hat: ['h h h h h h h h ', 'h h h h h h h ', 'h h h h h h h h ', 'h h h h h h h h '],
tamb: ['t t t t ', 't t t t ', 't t t t ', 't t 2t t tt'],
pads: {
r: 'wwww',
padA: [' b- '],
padB: ['ABCD'],
padC: [' '],
}
}, {
r: '1 + 2 + 3 + 4 + ',//1 + 2 + 3 + 4 + '
snare: [' K K ', ' K K ', ' K K ', ' K K '],
clap: [' p p ', ' p p-r-', ' p p ', ' p p-r-'],
kick: ['B B B B', 'B B B B B ', 'B B B B', 'B B B B B '],
bass: ['g------- ', 'g------- ', 'g------- ', 'g------- '],
hat: ['h ', 'h ', 'h ', 'h '],
tamb: ['t t t t ', 't t t t ', 't t t t ', 't t 2t t tt'],
pads: {
r: '1 + 2 + 3 + 4 + ',
padA: [' ', ' ', ' ', 'd- '],
padB: ['A-------', 'b-----------', 'a-b-c--- ', ' '],
padC: [' ', 'B-----------', 'C---------', 'A---B-E-----E---'],
}
}]
// Insert the score object.
session.insertScore(score, { startTime: 1 })
session.insertScore(score[1])
// duck under
session.insertScore({ tLibrary: trapKit, r: '1 2 3 4 ', duck: new Array(32).fill('K-K-K-K-') }, { startTime: 0.25 })
session.editCursorTime = 5.9
session.finalize()
const sessionName = 'trap-example-2'
session.saveAsReaperFile(sessionName)
// session.sendToServer()
.catch(e => console.error('Error:', e))
.then(() => console.warn('Ready:', sessionName))