From be5603bf16dbd556d10d74731059f3850f9760e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 2 Jul 2024 10:11:50 -0700 Subject: [PATCH] examples: fix 06a-image-sync.py --- examples/foundational/06a-image-sync.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/foundational/06a-image-sync.py b/examples/foundational/06a-image-sync.py index 686964502..5a5264dec 100644 --- a/examples/foundational/06a-image-sync.py +++ b/examples/foundational/06a-image-sync.py @@ -67,11 +67,12 @@ async def main(room_url: str, token): "Respond bot", DailyParams( audio_out_enabled=True, + camera_out_enabled=True, camera_out_width=1024, camera_out_height=1024, transcription_enabled=True, vad_enabled=True, - vad_analyzer=SileroVADAnalyzer() + vad_analyzer=SileroVADAnalyzer(), ) ) @@ -116,7 +117,7 @@ async def main(room_url: str, token): async def on_first_participant_joined(transport, participant): participant_name = participant["info"]["userName"] or '' transport.capture_participant_transcription(participant["id"]) - await task.queue_frames([TextFrame(f"Hi, this is {participant_name}.")]) + await task.queue_frames([TextFrame(f"Hi there {participant_name}!")]) runner = PipelineRunner()