summaryrefslogtreecommitdiff
path: root/doc/classes/AudioEffectLimiter.xml
blob: ebed5898294309530ea687f03ebfd70d7a9e4ada (plain)
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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectLimiter" inherits="AudioEffect" category="Core" version="3.0-alpha">
	<brief_description>
		Adds a soft clip Limiter audio effect to an Audio bus.
	</brief_description>
	<description>
		A limiter is similar to a compressor, but it’s less flexible and designed to disallow sound going over a given dB threshold. Adding one in the Master Bus is always recommended to reduce the effects of clipping.
		Soft clipping starts to reduce the peaks a little below the threshold level and progressively increases its effect as the input level increases such that the threshold is never exceeded.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="get_ceiling_db" qualifiers="const">
			<return type="float">
			</return>
			<description>
			</description>
		</method>
		<method name="get_soft_clip_db" qualifiers="const">
			<return type="float">
			</return>
			<description>
			</description>
		</method>
		<method name="get_soft_clip_ratio" qualifiers="const">
			<return type="float">
			</return>
			<description>
			</description>
		</method>
		<method name="get_threshold_db" qualifiers="const">
			<return type="float">
			</return>
			<description>
			</description>
		</method>
		<method name="set_ceiling_db">
			<return type="void">
			</return>
			<argument index="0" name="ceiling" type="float">
			</argument>
			<description>
			</description>
		</method>
		<method name="set_soft_clip_db">
			<return type="void">
			</return>
			<argument index="0" name="soft_clip" type="float">
			</argument>
			<description>
			</description>
		</method>
		<method name="set_soft_clip_ratio">
			<return type="void">
			</return>
			<argument index="0" name="soft_clip" type="float">
			</argument>
			<description>
			</description>
		</method>
		<method name="set_threshold_db">
			<return type="void">
			</return>
			<argument index="0" name="threshold" type="float">
			</argument>
			<description>
			</description>
		</method>
	</methods>
	<members>
		<member name="ceiling_db" type="float" setter="set_ceiling_db" getter="get_ceiling_db">
			The waveform's maximum allowed value. Value can range from -20 to -0.1. Default value: [code]-0.1dB[/code].
		</member>
		<member name="soft_clip_db" type="float" setter="set_soft_clip_db" getter="get_soft_clip_db">
			Applies a gain to the limited waves. Value can range from 0 to 6. Default value: [code]2dB[/code].
		</member>
		<member name="soft_clip_ratio" type="float" setter="set_soft_clip_ratio" getter="get_soft_clip_ratio">
		</member>
		<member name="threshold_db" type="float" setter="set_threshold_db" getter="get_threshold_db">
			Threshold from which the limiter begins to be active. Value can range from -30 to 0. Default value: [code]0dB[/code].
		</member>
	</members>
	<constants>
	</constants>
</class>