Module livekit.agents.pipeline.agent_playout
Classes
class AgentPlayout (*, audio_source: rtc.AudioSource)
-
Abstract base class for generic types.
On Python 3.12 and newer, generic classes implicitly inherit from Generic when they declare a parameter list after the class's name::
class Mapping[KT, VT]: def __getitem__(self, key: KT) -> VT: ... # Etc.
On older versions of Python, however, generic classes have to explicitly inherit from Generic.
After a class has been declared to be generic, it can then be used as follows::
def lookup_name[KT, VT](mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default
Initialize a new instance of EventEmitter.
Expand source code
class AgentPlayout(utils.EventEmitter[EventTypes]): def __init__(self, *, audio_source: rtc.AudioSource) -> None: super().__init__() self._audio_source = audio_source self._target_volume = 1.0 self._playout_atask: asyncio.Task[None] | None = None self._closed = False @property def target_volume(self) -> float: return self._target_volume @target_volume.setter def target_volume(self, value: float) -> None: self._target_volume = value @property def smoothed_volume(self) -> float: return self._target_volume async def aclose(self) -> None: if self._closed: return self._closed = True if self._playout_atask is not None: await self._playout_atask def play( self, speech_id: str, playout_source: AsyncIterable[rtc.AudioFrame], transcription_fwd: transcription.TTSSegmentsForwarder, ) -> PlayoutHandle: if self._closed: raise ValueError("cancellable source is closed") handle = PlayoutHandle( speech_id=speech_id, audio_source=self._audio_source, playout_source=playout_source, transcription_fwd=transcription_fwd, ) self._playout_atask = asyncio.create_task( self._playout_task(self._playout_atask, handle) ) return handle @utils.log_exceptions(logger=logger) async def _playout_task( self, old_task: asyncio.Task[None] | None, handle: PlayoutHandle ) -> None: if old_task is not None: await utils.aio.gracefully_cancel(old_task) if self._audio_source.queued_duration > 0: # this should not happen, but log it just in case logger.warning( "new playout while the source is still playing", extra={ "speech_id": handle.speech_id, "queued_duration": self._audio_source.queued_duration, }, ) first_frame = True @utils.log_exceptions(logger=logger) async def _capture_task(): nonlocal first_frame async for frame in handle._playout_source: if first_frame: handle._tr_fwd.segment_playout_started() logger.debug( "speech playout started", extra={"speech_id": handle.speech_id}, ) self.emit("playout_started") first_frame = False handle._pushed_duration += frame.samples_per_channel / frame.sample_rate await self._audio_source.capture_frame(frame) if self._audio_source.queued_duration > 0: await self._audio_source.wait_for_playout() capture_task = asyncio.create_task(_capture_task()) try: await asyncio.wait( [capture_task, handle._int_fut], return_when=asyncio.FIRST_COMPLETED, ) finally: await utils.aio.gracefully_cancel(capture_task) handle._total_played_time = ( handle._pushed_duration - self._audio_source.queued_duration ) if handle.interrupted or capture_task.exception(): self._audio_source.clear_queue() # make sure to remove any queued frames if not first_frame: if not handle.interrupted: handle._tr_fwd.segment_playout_finished() self.emit("playout_stopped", handle.interrupted) await handle._tr_fwd.aclose() handle._done_fut.set_result(None) logger.debug( "speech playout finished", extra={ "speech_id": handle.speech_id, "interrupted": handle.interrupted, }, )
Ancestors
- EventEmitter
- typing.Generic
Instance variables
prop smoothed_volume : float
-
Expand source code
@property def smoothed_volume(self) -> float: return self._target_volume
prop target_volume : float
-
Expand source code
@property def target_volume(self) -> float: return self._target_volume
Methods
async def aclose(self) ‑> None
def play(self, speech_id: str, playout_source: AsyncIterable[rtc.AudioFrame], transcription_fwd: transcription.TTSSegmentsForwarder) ‑> PlayoutHandle
Inherited members
class PlayoutHandle (speech_id: str, audio_source: rtc.AudioSource, playout_source: AsyncIterable[rtc.AudioFrame], transcription_fwd: transcription.TTSSegmentsForwarder)
-
Expand source code
class PlayoutHandle: def __init__( self, speech_id: str, audio_source: rtc.AudioSource, playout_source: AsyncIterable[rtc.AudioFrame], transcription_fwd: transcription.TTSSegmentsForwarder, ) -> None: self._playout_source = playout_source self._audio_source = audio_source self._tr_fwd = transcription_fwd self._interrupted = False self._int_fut = asyncio.Future[None]() self._done_fut = asyncio.Future[None]() self._speech_id = speech_id self._pushed_duration = 0.0 self._total_played_time: float | None = None # set whem the playout is done @property def speech_id(self) -> str: return self._speech_id @property def interrupted(self) -> bool: return self._interrupted @property def time_played(self) -> float: if self._total_played_time is not None: return self._total_played_time return self._pushed_duration - self._audio_source.queued_duration def done(self) -> bool: return self._done_fut.done() or self._interrupted def interrupt(self) -> None: if self.done(): return self._int_fut.set_result(None) self._interrupted = True def join(self) -> asyncio.Future: return self._done_fut
Instance variables
prop interrupted : bool
-
Expand source code
@property def interrupted(self) -> bool: return self._interrupted
prop speech_id : str
-
Expand source code
@property def speech_id(self) -> str: return self._speech_id
prop time_played : float
-
Expand source code
@property def time_played(self) -> float: if self._total_played_time is not None: return self._total_played_time return self._pushed_duration - self._audio_source.queued_duration
Methods
def done(self) ‑> bool
def interrupt(self) ‑> None
def join(self) ‑> _asyncio.Future