diff --git a/examples/canonical-metrics/bot.py b/examples/canonical-metrics/bot.py index a970f7fe1..871d0542d 100644 --- a/examples/canonical-metrics/bot.py +++ b/examples/canonical-metrics/bot.py @@ -43,7 +43,7 @@ async def main(): DailyParams( audio_out_enabled=True, audio_in_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, # diff --git a/examples/chatbot-audio-recording/bot.py b/examples/chatbot-audio-recording/bot.py index 2bfae6c0a..5428a0d2f 100644 --- a/examples/chatbot-audio-recording/bot.py +++ b/examples/chatbot-audio-recording/bot.py @@ -66,7 +66,7 @@ async def main(): DailyParams( audio_out_enabled=True, audio_in_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, # diff --git a/examples/deployment/flyio-example/bot.py b/examples/deployment/flyio-example/bot.py index 4df5cb447..45d94a9e3 100644 --- a/examples/deployment/flyio-example/bot.py +++ b/examples/deployment/flyio-example/bot.py @@ -41,7 +41,7 @@ async def main(room_url: str, token: str): api_key=daily_api_key, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ), diff --git a/examples/fal-smart-turn/server/bot.py b/examples/fal-smart-turn/server/bot.py index c707c3768..8c3810535 100644 --- a/examples/fal-smart-turn/server/bot.py +++ b/examples/fal-smart-turn/server/bot.py @@ -243,9 +243,9 @@ async def bot(args: DailySessionArguments): audio_in_enabled=True, audio_in_filter=KrispFilter(), audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=576, + video_out_enabled=True, + video_out_width=1024, + video_out_height=576, vad_analyzer=SileroVADAnalyzer(params=VADParams(stop_secs=0.2)), turn_analyzer=FalSmartTurnAnalyzer( api_key=os.getenv("FAL_SMART_TURN_API_KEY"), aiohttp_session=session @@ -276,9 +276,9 @@ async def local_daily(): params=DailyParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=576, + video_out_enabled=True, + video_out_width=1024, + video_out_height=576, vad_analyzer=SileroVADAnalyzer(params=VADParams(stop_secs=0.2)), turn_analyzer=FalSmartTurnAnalyzer( api_key=os.getenv("FAL_SMART_TURN_API_KEY"), aiohttp_session=session diff --git a/examples/foundational/03-still-frame.py b/examples/foundational/03-still-frame.py index 5a4d9e609..fcd505d52 100644 --- a/examples/foundational/03-still-frame.py +++ b/examples/foundational/03-still-frame.py @@ -29,9 +29,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): transport = SmallWebRTCTransport( webrtc_connection=webrtc_connection, params=TransportParams( - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, ), ) diff --git a/examples/foundational/03a-local-still-frame.py b/examples/foundational/03a-local-still-frame.py index cacb227ef..7ea02cca0 100644 --- a/examples/foundational/03a-local-still-frame.py +++ b/examples/foundational/03a-local-still-frame.py @@ -33,9 +33,7 @@ async def main(): transport = TkLocalTransport( tk_root, - TkTransportParams( - camera_out_enabled=True, camera_out_width=1024, camera_out_height=1024 - ), + TkTransportParams(video_out_enabled=True, video_out_width=1024, video_out_height=1024), ) imagegen = FalImageGenService( diff --git a/examples/foundational/03b-still-frame-imagen.py b/examples/foundational/03b-still-frame-imagen.py index a9ae9ab53..b76a80809 100644 --- a/examples/foundational/03b-still-frame-imagen.py +++ b/examples/foundational/03b-still-frame-imagen.py @@ -28,9 +28,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): transport = SmallWebRTCTransport( webrtc_connection=webrtc_connection, params=TransportParams( - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, ), ) diff --git a/examples/foundational/05-sync-speech-and-image.py b/examples/foundational/05-sync-speech-and-image.py index 9021dbf54..3364f4ec3 100644 --- a/examples/foundational/05-sync-speech-and-image.py +++ b/examples/foundational/05-sync-speech-and-image.py @@ -77,9 +77,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): webrtc_connection=webrtc_connection, params=TransportParams( audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, ), ) diff --git a/examples/foundational/05a-local-sync-speech-and-image.py b/examples/foundational/05a-local-sync-speech-and-image.py index 77486d247..a01f07c0e 100644 --- a/examples/foundational/05a-local-sync-speech-and-image.py +++ b/examples/foundational/05a-local-sync-speech-and-image.py @@ -153,9 +153,9 @@ async def main(): tk_root, TkTransportParams( audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, ), ) diff --git a/examples/foundational/06a-image-sync.py b/examples/foundational/06a-image-sync.py index c9db26700..a676e711f 100644 --- a/examples/foundational/06a-image-sync.py +++ b/examples/foundational/06a-image-sync.py @@ -75,9 +75,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/09-mirror.py b/examples/foundational/09-mirror.py index 46245344f..287d61dd2 100644 --- a/examples/foundational/09-mirror.py +++ b/examples/foundational/09-mirror.py @@ -39,7 +39,6 @@ class MirrorProcessor(FrameProcessor): ) ) elif isinstance(frame, InputImageRawFrame): - print(f"Received image frame: {frame.size} {frame.format}") await self.push_frame( OutputImageRawFrame(image=frame.image, size=frame.size, format=frame.format) ) @@ -55,11 +54,11 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, - camera_out_width=1280, - camera_out_height=720, + video_in_enabled=True, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) diff --git a/examples/foundational/09a-local-mirror.py b/examples/foundational/09a-local-mirror.py index b053beb7a..9d5863ff4 100644 --- a/examples/foundational/09a-local-mirror.py +++ b/examples/foundational/09a-local-mirror.py @@ -57,11 +57,11 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, - camera_out_width=1280, - camera_out_height=720, + video_in_enabled=True, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) @@ -72,10 +72,10 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): tk_root, TkTransportParams( audio_out_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, - camera_out_width=1280, - camera_out_height=720, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) diff --git a/examples/foundational/12-describe-video.py b/examples/foundational/12-describe-video.py index 1943c7a1e..e51c1e82c 100644 --- a/examples/foundational/12-describe-video.py +++ b/examples/foundational/12-describe-video.py @@ -57,7 +57,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/12a-describe-video-gemini-flash.py b/examples/foundational/12a-describe-video-gemini-flash.py index 3b4ed00f3..e54263c49 100644 --- a/examples/foundational/12a-describe-video-gemini-flash.py +++ b/examples/foundational/12a-describe-video-gemini-flash.py @@ -57,7 +57,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/12b-describe-video-gpt-4o.py b/examples/foundational/12b-describe-video-gpt-4o.py index 8543d2c39..0420040a4 100644 --- a/examples/foundational/12b-describe-video-gpt-4o.py +++ b/examples/foundational/12b-describe-video-gpt-4o.py @@ -57,7 +57,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/12c-describe-video-anthropic.py b/examples/foundational/12c-describe-video-anthropic.py index 725a5a0a9..80b6995dd 100644 --- a/examples/foundational/12c-describe-video-anthropic.py +++ b/examples/foundational/12c-describe-video-anthropic.py @@ -57,7 +57,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/14b-function-calling-anthropic-video.py b/examples/foundational/14b-function-calling-anthropic-video.py index 20dfbc6eb..da4e7e0fa 100644 --- a/examples/foundational/14b-function-calling-anthropic-video.py +++ b/examples/foundational/14b-function-calling-anthropic-video.py @@ -68,7 +68,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, # Make sure camera input is enabled + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/14d-function-calling-video.py b/examples/foundational/14d-function-calling-video.py index db678301c..f87740021 100644 --- a/examples/foundational/14d-function-calling-video.py +++ b/examples/foundational/14d-function-calling-video.py @@ -68,7 +68,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, # Make sure camera input is enabled + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/14e-function-calling-gemini.py b/examples/foundational/14e-function-calling-gemini.py index e50bb3e06..483714b81 100644 --- a/examples/foundational/14e-function-calling-gemini.py +++ b/examples/foundational/14e-function-calling-gemini.py @@ -70,7 +70,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, # Make sure camera input is enabled + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/foundational/18-gstreamer-filesrc.py b/examples/foundational/18-gstreamer-filesrc.py index ed2b45699..d5c764580 100644 --- a/examples/foundational/18-gstreamer-filesrc.py +++ b/examples/foundational/18-gstreamer-filesrc.py @@ -40,10 +40,10 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): webrtc_connection=webrtc_connection, params=TransportParams( audio_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, - camera_out_width=1280, - camera_out_height=720, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) diff --git a/examples/foundational/18a-gstreamer-videotestsrc.py b/examples/foundational/18a-gstreamer-videotestsrc.py index 612701ec6..1ed535e8f 100644 --- a/examples/foundational/18a-gstreamer-videotestsrc.py +++ b/examples/foundational/18a-gstreamer-videotestsrc.py @@ -26,10 +26,10 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): webrtc_connection=webrtc_connection, params=TransportParams( audio_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, - camera_out_width=1280, - camera_out_height=720, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) diff --git a/examples/foundational/20d-persistent-context-gemini.py b/examples/foundational/20d-persistent-context-gemini.py index 7d10aabf1..754140b38 100644 --- a/examples/foundational/20d-persistent-context-gemini.py +++ b/examples/foundational/20d-persistent-context-gemini.py @@ -232,7 +232,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=True, + video_in_enabled=True, vad_analyzer=SileroVADAnalyzer(params=VADParams(stop_secs=0.8)), ), ) diff --git a/examples/foundational/26-gemini-multimodal-live.py b/examples/foundational/26-gemini-multimodal-live.py index 29e4997c6..1598a77aa 100644 --- a/examples/foundational/26-gemini-multimodal-live.py +++ b/examples/foundational/26-gemini-multimodal-live.py @@ -33,7 +33,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_in_enabled=False, + video_in_enabled=False, # set stop_secs to something roughly similar to the internal setting # of the Multimodal Live api, just to align events. vad_analyzer=SileroVADAnalyzer(params=VADParams(stop_secs=0.5)), diff --git a/examples/foundational/27-simli-layer.py b/examples/foundational/27-simli-layer.py index 6dea78e10..b2e0d3374 100644 --- a/examples/foundational/27-simli-layer.py +++ b/examples/foundational/27-simli-layer.py @@ -34,9 +34,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): params=TransportParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=512, - camera_out_height=512, + video_out_enabled=True, + video_out_width=512, + video_out_height=512, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/moondream-chatbot/bot.py b/examples/moondream-chatbot/bot.py index 16d385bf3..d5b24aec2 100644 --- a/examples/moondream-chatbot/bot.py +++ b/examples/moondream-chatbot/bot.py @@ -143,9 +143,9 @@ async def main(): DailyParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=576, + video_out_enabled=True, + video_out_width=1024, + video_out_height=576, transcription_enabled=True, vad_analyzer=SileroVADAnalyzer(), ), diff --git a/examples/p2p-webrtc/daily-interop-bridge/bot.py b/examples/p2p-webrtc/daily-interop-bridge/bot.py index 765f3856f..0e859b5a0 100644 --- a/examples/p2p-webrtc/daily-interop-bridge/bot.py +++ b/examples/p2p-webrtc/daily-interop-bridge/bot.py @@ -51,13 +51,13 @@ async def run_bot(webrtc_connection): pipecat_transport = SmallWebRTCTransport( webrtc_connection=webrtc_connection, params=TransportParams( - camera_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, audio_in_enabled=True, audio_out_enabled=True, - camera_out_width=1280, - camera_out_height=720, + video_in_enabled=True, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) @@ -67,13 +67,13 @@ async def run_bot(webrtc_connection): None, "SmallWebRTC", params=DailyParams( - camera_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, audio_in_enabled=True, audio_out_enabled=True, - camera_out_width=1280, - camera_out_height=720, + video_in_enabled=True, + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, ), ) diff --git a/examples/p2p-webrtc/video-transform/server/bot.py b/examples/p2p-webrtc/video-transform/server/bot.py index ffa97ff55..a6d885cea 100644 --- a/examples/p2p-webrtc/video-transform/server/bot.py +++ b/examples/p2p-webrtc/video-transform/server/bot.py @@ -27,10 +27,10 @@ load_dotenv(override=True) class EdgeDetectionProcessor(FrameProcessor): - def __init__(self, camera_out_width, camera_out_height: int): + def __init__(self, video_out_width, video_out_height: int): super().__init__() - self._camera_out_width = camera_out_width - self._camera_out_height = camera_out_height + self._video_out_width = video_out_width + self._video_out_height = video_out_height async def process_frame(self, frame: Frame, direction: FrameDirection): await super().process_frame(frame, direction) @@ -45,7 +45,7 @@ class EdgeDetectionProcessor(FrameProcessor): img = cv2.cvtColor(cv2.Canny(img, 100, 200), cv2.COLOR_GRAY2BGR) # convert the size if needed - desired_size = (self._camera_out_width, self._camera_out_height) + desired_size = (self._video_out_width, self._video_out_height) if frame.size != desired_size: resized_image = cv2.resize(img, desired_size) frame = OutputImageRawFrame(resized_image.tobytes(), desired_size, frame.format) @@ -71,13 +71,13 @@ Respond to what the user said in a creative and helpful way. Keep your responses async def run_bot(webrtc_connection): transport_params = TransportParams( - camera_in_enabled=True, - camera_out_enabled=True, - camera_out_is_live=True, audio_in_enabled=True, audio_out_enabled=True, - vad_analyzer=SileroVADAnalyzer(), audio_out_10ms_chunks=2, + video_in_enabled=True, + video_out_enabled=True, + video_out_is_live=True, + vad_analyzer=SileroVADAnalyzer(), ) pipecat_transport = SmallWebRTCTransport( @@ -111,7 +111,7 @@ async def run_bot(webrtc_connection): rtvi, llm, # LLM EdgeDetectionProcessor( - transport_params.camera_out_width, transport_params.camera_out_height + transport_params.video_out_width, transport_params.video_out_height ), # Sending the video back to the user pipecat_transport.output(), context_aggregator.assistant(), diff --git a/examples/phone-chatbot/bot_twilio.py b/examples/phone-chatbot/bot_twilio.py index 12607d960..2c3e9a31b 100644 --- a/examples/phone-chatbot/bot_twilio.py +++ b/examples/phone-chatbot/bot_twilio.py @@ -48,7 +48,7 @@ async def main(room_url: str, token: str, callId: str, sipUri: str): dialin_settings=None, # Not required for Twilio audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ), diff --git a/examples/phone-chatbot/call_transfer.py b/examples/phone-chatbot/call_transfer.py index 987d6911c..55276667c 100644 --- a/examples/phone-chatbot/call_transfer.py +++ b/examples/phone-chatbot/call_transfer.py @@ -138,7 +138,7 @@ async def main( api_key=daily_api_key, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ) @@ -152,7 +152,7 @@ async def main( dialin_settings=daily_dialin_settings, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ) diff --git a/examples/phone-chatbot/simple_dialin.py b/examples/phone-chatbot/simple_dialin.py index 3350bc52a..c539c9872 100644 --- a/examples/phone-chatbot/simple_dialin.py +++ b/examples/phone-chatbot/simple_dialin.py @@ -64,7 +64,7 @@ async def main( api_key=daily_api_key, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ) @@ -78,7 +78,7 @@ async def main( dialin_settings=daily_dialin_settings, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ) diff --git a/examples/phone-chatbot/simple_dialout.py b/examples/phone-chatbot/simple_dialout.py index 1a1e48df2..e8cc71e49 100644 --- a/examples/phone-chatbot/simple_dialout.py +++ b/examples/phone-chatbot/simple_dialout.py @@ -56,7 +56,7 @@ async def main( api_key=daily_api_key, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ) diff --git a/examples/phone-chatbot/voicemail_detection.py b/examples/phone-chatbot/voicemail_detection.py index eb639a864..3eeab4742 100644 --- a/examples/phone-chatbot/voicemail_detection.py +++ b/examples/phone-chatbot/voicemail_detection.py @@ -165,7 +165,7 @@ async def main( api_key=daily_api_key, audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), ), ) diff --git a/examples/sentry-metrics/bot.py b/examples/sentry-metrics/bot.py index 96b20cc2f..0980fdbf2 100644 --- a/examples/sentry-metrics/bot.py +++ b/examples/sentry-metrics/bot.py @@ -41,7 +41,7 @@ async def main(): DailyParams( audio_out_enabled=True, audio_in_enabled=True, - camera_out_enabled=False, + video_out_enabled=False, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, ), diff --git a/examples/simple-chatbot/server/bot-gemini.py b/examples/simple-chatbot/server/bot-gemini.py index b2f8738c3..70dfccf2d 100644 --- a/examples/simple-chatbot/server/bot-gemini.py +++ b/examples/simple-chatbot/server/bot-gemini.py @@ -123,9 +123,9 @@ async def main(): DailyParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=576, + video_out_enabled=True, + video_out_width=1024, + video_out_height=576, vad_analyzer=SileroVADAnalyzer(params=VADParams(stop_secs=0.5)), ), ) diff --git a/examples/simple-chatbot/server/bot-openai.py b/examples/simple-chatbot/server/bot-openai.py index 522fb8806..07c56aa28 100644 --- a/examples/simple-chatbot/server/bot-openai.py +++ b/examples/simple-chatbot/server/bot-openai.py @@ -124,9 +124,9 @@ async def main(): DailyParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=576, + video_out_enabled=True, + video_out_width=1024, + video_out_height=576, vad_analyzer=SileroVADAnalyzer(), transcription_enabled=True, # diff --git a/examples/storytelling-chatbot/src/bot.py b/examples/storytelling-chatbot/src/bot.py index 65e1a1833..47f948a3c 100644 --- a/examples/storytelling-chatbot/src/bot.py +++ b/examples/storytelling-chatbot/src/bot.py @@ -51,9 +51,9 @@ async def main(room_url, token=None): DailyParams( audio_in_enabled=True, audio_out_enabled=True, - camera_out_enabled=True, - camera_out_width=1024, - camera_out_height=1024, + video_out_enabled=True, + video_out_width=1024, + video_out_height=1024, transcription_enabled=True, vad_analyzer=SileroVADAnalyzer(), ),