Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better audio processing API & rtc-v0.21.1 #383

Merged
merged 4 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions livekit-rtc/livekit/rtc/apm.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ class AudioProcessingModule:
def __init__(
self,
*,
echo_canceller_enabled: bool = False,
noise_suppression_enabled: bool = False,
high_pass_filter_enabled: bool = False,
gain_controller_enabled: bool = False,
echo_cancellation: bool = False,
noise_suppression: bool = False,
high_pass_filter: bool = False,
auto_gain_control: bool = False,
) -> None:
"""
Initialize an AudioProcessingModule instance with the specified audio processing features.

Args:
echo_canceller_enabled (bool, optional): Whether to enable echo cancellation.
noise_suppression_enabled (bool, optional): Whether to enable noise suppression.
high_pass_filter_enabled (bool, optional): Whether to enable a high-pass filter.
gain_controller_enabled (bool, optional): Whether to enable a gain controller.
echo_cancellation (bool, optional): Whether to enable echo cancellation.
noise_suppression (bool, optional): Whether to enable noise suppression.
high_pass_filter (bool, optional): Whether to enable a high-pass filter.
auto_gain_control (bool, optional): Whether to enable auto gain control.
"""
req = proto_ffi.FfiRequest()
req.new_apm.echo_canceller_enabled = echo_canceller_enabled
req.new_apm.noise_suppression_enabled = noise_suppression_enabled
req.new_apm.high_pass_filter_enabled = high_pass_filter_enabled
req.new_apm.gain_controller_enabled = gain_controller_enabled
req.new_apm.echo_canceller_enabled = echo_cancellation
req.new_apm.noise_suppression_enabled = noise_suppression
req.new_apm.high_pass_filter_enabled = high_pass_filter
req.new_apm.gain_controller_enabled = auto_gain_control

resp = FfiClient.instance.request(req)
self._ffi_handle = FfiHandle(resp.new_apm.apm.handle.id)
Expand Down
2 changes: 1 addition & 1 deletion livekit-rtc/livekit/rtc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.21.0"
__version__ = "0.21.1"
8 changes: 4 additions & 4 deletions livekit-rtc/tests/test_apm.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ def test_audio_processing():

# Initialize APM with echo cancellation enabled
apm = AudioProcessingModule(
echo_canceller_enabled=True,
noise_suppression_enabled=True,
high_pass_filter_enabled=True,
gain_controller_enabled=True,
echo_cancellation=True,
noise_suppression=True,
high_pass_filter=True,
auto_gain_control=True,
)
print("APM Internal Handle:", apm._ffi_handle)

Expand Down
Loading