File: AttackSlope.schelp

package info (click to toggle)
supercollider-sc3-plugins 3.7.1~repack-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,332 kB
  • ctags: 11,704
  • sloc: cpp: 140,180; lisp: 14,746; ansic: 2,133; xml: 86; makefile: 82; haskell: 21; sh: 8
file content (80 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (4)
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
TITLE:: AttackSlope
summary:: Detect onsets and assess the nature of the attack slope
categories:: UGens>Analysis
related:: Classes/Onsets, Classes/OnsetStatistics

DESCRIPTION::
Detects onsets using an energy based detection function, and then assesses the nature of the attack slope in various ways. 

CLASSMETHODS::

METHOD:: kr
control rate feature extraction

ARGUMENT:: input
audio input

ARGUMENT:: windowsize
Size in samples of the operating window for detection

ARGUMENT:: peakpicksize
parameter of onset detection

ARGUMENT:: leak
parameter of onset detection

ARGUMENT:: energythreshold
parameter of onset detection

ARGUMENT:: sumthreshold
parameter of onset detection

ARGUMENT:: mingap
Do not retrigger for detected onsets unless this number of control periods has elapsed

ARGUMENT:: numslopesaveraged
number of slopes to average (number of previous slopes to store)

returns:: (describe returnvalue here)
//[0] onset trigger (can be used as an onset detector)
//[1] corrected to minima time of last onset
//[2] most recent slope measurement
//[3] average slope calculation 
//[4] raw detection function
//[5] raw peakpick function


EXAMPLES::

code::
//[0] onset trigger 
//[1] corrected to minima time of last onset
//[2] most recent slope measurement
//[3] average slope calculation 
//[4] raw detection function
//[5] raw peakpick function
 
b = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01.wav")
//minimal example
(
{	
//var source = SoundIn.ar; 
var source = PlayBuf.ar(1,b,loop:1);
var slopeanalysis = AttackSlope.kr(source,peakpicksize:20,sumthreshold:40); 

//slopeanalysis.poll;

K2A.ar(slopeanalysis);

//old now [4,5,1]
//K2A.ar([slopeanalysis[0],100*slopeanalysis[1],slopeanalysis[2]])

//K2A.ar([slopeanalysis[0],100*slopeanalysis[1],slopeanalysis[2]])


}.plot(10.0,minval:0.0,maxval:1.0)
)



::