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:
@@ -18,6 +18,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue where audio filters' `stop()` would not be called when using
|
||||||
|
`CancelFrame`.
|
||||||
|
|
||||||
- Fixed an issue where `RimeHttpTTSService` and `PiperTTSService` could generate
|
- Fixed an issue where `RimeHttpTTSService` and `PiperTTSService` could generate
|
||||||
incorrectly 16-bit aligned audio frames, potentially leading to internal
|
incorrectly 16-bit aligned audio frames, potentially leading to internal
|
||||||
errors or static audio.
|
errors or static audio.
|
||||||
|
|||||||
@@ -232,6 +232,9 @@ class BaseInputTransport(FrameProcessor):
|
|||||||
"""
|
"""
|
||||||
# Cancel and wait for the audio input task to finish.
|
# Cancel and wait for the audio input task to finish.
|
||||||
await self._cancel_audio_task()
|
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):
|
async def set_transport_ready(self, frame: StartFrame):
|
||||||
"""Called when the transport is ready to stream.
|
"""Called when the transport is ready to stream.
|
||||||
|
|||||||
Reference in New Issue
Block a user