Merge pull request #2865 from pipecat-ai/aleix/stop-audio-filter-also-on-cancel

BaseInputTransport: stop audio filter on cancel
This commit is contained in:
Aleix Conchillo Flaqué
2025-10-15 09:53:24 -07:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -232,6 +232,9 @@ class BaseInputTransport(FrameProcessor):
"""
# Cancel and wait for the audio input task to finish.
await self._cancel_audio_task()
# Stop audio filter.
if self._params.audio_in_filter:
await self._params.audio_in_filter.stop()
async def set_transport_ready(self, frame: StartFrame):
"""Called when the transport is ready to stream.