From 6cc66a3df166a3633baed576c4fff27b0fa05b89 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 7 May 2026 09:57:21 -0400 Subject: [PATCH] Update video_out_bitrate deprecation to use sphinx directive. Replaces the inline `[DEPRECATED]` tag with a `.. deprecated:: 1.1.0` directive per CONTRIBUTING.md docstring conventions, so the deprecation shows up properly in the rendered docs. --- src/pipecat/transports/base_transport.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/pipecat/transports/base_transport.py b/src/pipecat/transports/base_transport.py index 457844930..634cb53f5 100644 --- a/src/pipecat/transports/base_transport.py +++ b/src/pipecat/transports/base_transport.py @@ -47,7 +47,13 @@ class TransportParams(BaseModel): video_out_is_live: Enable real-time video output streaming. video_out_width: Video output width in pixels. video_out_height: Video output height in pixels. - video_out_bitrate: [DEPRECATED] Video output bitrate in bits per second. + video_out_bitrate: Video output bitrate in bits per second. + + .. deprecated:: 1.1.0 + Use provider-specific settings instead (e.g., + ``DailyParams.camera_out_send_settings``). This parameter will + be removed in 2.0.0. + video_out_framerate: Video output frame rate in FPS. video_out_color_format: Video output color format string. video_out_codec: Preferred video codec for output (e.g., 'VP8', 'H264', 'H265').