You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: release-packaging/--CREDITS+INSTUCTIONS.md
+37-1Lines changed: 37 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,42 @@ This was made possible thanks to the FluCoMa project (http://www.flucoma.org/) f
12
12
3. Enjoy!
13
13
14
14
#### How to get started
15
-
The fact that this package extends the native Buffer class means that the different instance methods will be documented in the Buffer helpfile. There is also a Guide entitled 'OfflineBufferProcesses' which explains and compares other methods to do similar tasks.
15
+
The fact that this package extends the native Buffer class means that the new instance methods will be documented in the Buffer helpfile.
16
+
17
+
The new methods are:
18
+
19
+
.add
20
+
adds an offset to the value of each sample (default: 0)
21
+
22
+
.mul
23
+
multiplies each sample by the gain (default: -1)
24
+
25
+
.removeDC
26
+
applies a one-pole high-pass filter to remove any DC offset, preserving the separate channels
27
+
28
+
.reverse
29
+
swaps the order of samples in the buffer, from the end to the start, preserving the separate channels
30
+
31
+
.chunkSwap
32
+
allows to move chunks of contiguous frames within a buffer, preserving the separate channels
33
+
34
+
.waveSetCopyTo
35
+
allows to copy complete wavesets to a destination buffer, preserving the separate channels
36
+
37
+
A quick example of use in SuperCollider code would look like this:
The Buffer helpfile has complete documentation of all methods with many examples. There is also a Guide entitled 'OfflineBufferProcesses' which explains and compares other methods to do similar tasks. You can find it by searching the SuperCollider help browser.
16
52
17
53
Comments, suggestions and bug reports are welcome.
0 commit comments