@@ -167,7 +167,7 @@ def delete_image(self, image_id: str) -> None:
167167 )
168168
169169 def connect_rtstream (
170- self , url : str , name : str , sample_rate : int = None
170+ self , url : str , name : str , sample_rate : int = None , audio : bool = False
171171 ) -> RTStream :
172172 """Connect to an rtstream.
173173
@@ -182,6 +182,7 @@ def connect_rtstream(
182182 "collection_id" : self .id ,
183183 "url" : url ,
184184 "name" : name ,
185+ "audio" : audio ,
185186 "sample_rate" : sample_rate ,
186187 },
187188 )
@@ -520,6 +521,7 @@ def record_meeting(
520521 bot_name : str = None ,
521522 bot_image_url : str = None ,
522523 meeting_title : str = None ,
524+ realtime_stream : bool = False ,
523525 callback_url : str = None ,
524526 callback_data : Optional [dict ] = None ,
525527 time_zone : str = "UTC" ,
@@ -530,6 +532,7 @@ def record_meeting(
530532 :param str bot_name: Name of the recorder bot
531533 :param str bot_image_url: URL of the recorder bot image
532534 :param str meeting_title: Name of the meeting
535+ :param bool realtime_stream: Whether to stream the meeting in realtime
533536 :param str callback_url: URL to receive callback once recording is done
534537 :param dict callback_data: Data to be sent in the callback (optional)
535538 :param str time_zone: Time zone for the meeting (default ``UTC``)
@@ -546,6 +549,7 @@ def record_meeting(
546549 "bot_name" : bot_name ,
547550 "bot_image_url" : bot_image_url ,
548551 "meeting_title" : meeting_title ,
552+ "realtime_stream" : realtime_stream ,
549553 "callback_url" : callback_url ,
550554 "callback_data" : callback_data ,
551555 "time_zone" : time_zone ,
0 commit comments