Skip to content

Commit 5a61c03

Browse files
Release v0.1.11
1 parent ea67541 commit 5a61c03

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "livekit-plugins-ai-coustics"
9-
version = "0.1.10"
9+
version = "0.1.11"
1010
description = "LiveKit AI Coustics noise filtering plugin"
1111
readme = "README.md"
1212
requires-python = ">=3.9"
13-
dependencies = ["livekit>=0.21.3"]
13+
dependencies = ["livekit>=1.0.25"]
1414
keywords = ["webrtc", "realtime", "audio", "livekit", "ai-coustics"]
1515
license = { text = "SEE LICENSE IN https://livekit.io/legal/terms-of-service" }
1616

src/livekit/plugins/ai_coustics/plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ def _process(self, frame: rtc.AudioFrame) -> rtc.AudioFrame:
143143
sample_rate=frame.sample_rate,
144144
num_channels=frame.num_channels,
145145
samples_per_channel=frame.samples_per_channel,
146+
userdata=frame.userdata,
146147
)
147148
output_frame.userdata[FRAME_USERDATA_AIC_VAD_ATTRIBUTE] = vad_data
148149
return output_frame

0 commit comments

Comments
 (0)