From 0a9878998faf2122bf9359683b2bdf797e356aa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 27 Apr 2026 09:58:29 -0700 Subject: [PATCH] docs(changelog): add entries for camera_out_send_settings and video_out_bitrate deprecation --- changelog/4370.added.2.md | 12 ++++++++++++ changelog/4370.deprecated.md | 1 + 2 files changed, 13 insertions(+) create mode 100644 changelog/4370.added.2.md create mode 100644 changelog/4370.deprecated.md diff --git a/changelog/4370.added.2.md b/changelog/4370.added.2.md new file mode 100644 index 000000000..355a2ce40 --- /dev/null +++ b/changelog/4370.added.2.md @@ -0,0 +1,12 @@ +- Added `camera_out_send_settings` to `DailyParams`. This dict is passed verbatim to the Daily client's camera publishing settings, allowing applications to fully control encoding, codec, bitrate, and framerate. + + ```python + params = DailyParams( + camera_out_send_settings={ + "maxQuality": "high", + "encodings": { + "high": {"maxBitrate": 2_000_000, "maxFramerate": 30} + }, + }, + ) + ``` diff --git a/changelog/4370.deprecated.md b/changelog/4370.deprecated.md new file mode 100644 index 000000000..6fea1c970 --- /dev/null +++ b/changelog/4370.deprecated.md @@ -0,0 +1 @@ +- Deprecated `TransportParams.video_out_bitrate` for the Daily transport. Use `DailyParams.camera_out_send_settings` instead to configure camera publishing encodings (bitrate, framerate, codec, etc.).