From baaabf7d73c9f3201e5ff7778fe946f50f097b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Fri, 24 Apr 2026 11:13:40 -0700 Subject: [PATCH] docs(changelog): add entry for screenVideo destination support --- changelog/4370.added.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 changelog/4370.added.md diff --git a/changelog/4370.added.md b/changelog/4370.added.md new file mode 100644 index 000000000..620ba721e --- /dev/null +++ b/changelog/4370.added.md @@ -0,0 +1,16 @@ +- Added support for Daily's built-in `screenVideo` destination in `DailyTransport`. When `"screenVideo"` is included in `video_out_destinations` transport parameter, a dedicated screen video track is created at join time and frames with `transport_destination="screenVideo"` are routed to it. + + ```python + params = DailyParams( + video_out_enabled=True, + video_out_is_live=True, + video_out_width=1280, + video_out_height=720, + video_out_destinations=["screenVideo"] + ) + + ... + + frame = OutputImageRawFrame(...) + frame.transport_destination = "screenVideo" + ```