Skip to content

Commit 623b5a5

Browse files
theomonnomdavidzhao
andauthoredMar 4, 2025··
better audio processing API & rtc-v0.21.1 (#383)
Co-authored-by: David Zhao <[email protected]>
1 parent 1ac7588 commit 623b5a5

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed
 

‎livekit-rtc/livekit/rtc/apm.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ class AudioProcessingModule:
1515
def __init__(
1616
self,
1717
*,
18-
echo_canceller_enabled: bool = False,
19-
noise_suppression_enabled: bool = False,
20-
high_pass_filter_enabled: bool = False,
21-
gain_controller_enabled: bool = False,
18+
echo_cancellation: bool = False,
19+
noise_suppression: bool = False,
20+
high_pass_filter: bool = False,
21+
auto_gain_control: bool = False,
2222
) -> None:
2323
"""
2424
Initialize an AudioProcessingModule instance with the specified audio processing features.
2525
2626
Args:
27-
echo_canceller_enabled (bool, optional): Whether to enable echo cancellation.
28-
noise_suppression_enabled (bool, optional): Whether to enable noise suppression.
29-
high_pass_filter_enabled (bool, optional): Whether to enable a high-pass filter.
30-
gain_controller_enabled (bool, optional): Whether to enable a gain controller.
27+
echo_cancellation (bool, optional): Whether to enable echo cancellation.
28+
noise_suppression (bool, optional): Whether to enable noise suppression.
29+
high_pass_filter (bool, optional): Whether to enable a high-pass filter.
30+
auto_gain_control (bool, optional): Whether to enable auto gain control.
3131
"""
3232
req = proto_ffi.FfiRequest()
33-
req.new_apm.echo_canceller_enabled = echo_canceller_enabled
34-
req.new_apm.noise_suppression_enabled = noise_suppression_enabled
35-
req.new_apm.high_pass_filter_enabled = high_pass_filter_enabled
36-
req.new_apm.gain_controller_enabled = gain_controller_enabled
33+
req.new_apm.echo_canceller_enabled = echo_cancellation
34+
req.new_apm.noise_suppression_enabled = noise_suppression
35+
req.new_apm.high_pass_filter_enabled = high_pass_filter
36+
req.new_apm.gain_controller_enabled = auto_gain_control
3737

3838
resp = FfiClient.instance.request(req)
3939
self._ffi_handle = FfiHandle(resp.new_apm.apm.handle.id)

‎livekit-rtc/livekit/rtc/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.21.0"
1+
__version__ = "0.21.1"

‎livekit-rtc/tests/test_apm.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ def test_audio_processing():
1717

1818
# Initialize APM with echo cancellation enabled
1919
apm = AudioProcessingModule(
20-
echo_canceller_enabled=True,
21-
noise_suppression_enabled=True,
22-
high_pass_filter_enabled=True,
23-
gain_controller_enabled=True,
20+
echo_cancellation=True,
21+
noise_suppression=True,
22+
high_pass_filter=True,
23+
auto_gain_control=True,
2424
)
2525
print("APM Internal Handle:", apm._ffi_handle)
2626

0 commit comments

Comments
 (0)
Please sign in to comment.