docs(changelog): add entries for camera_out_send_settings and video_out_bitrate deprecation
This commit is contained in:
12
changelog/4370.added.2.md
Normal file
12
changelog/4370.added.2.md
Normal file
@@ -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}
|
||||
},
|
||||
},
|
||||
)
|
||||
```
|
||||
1
changelog/4370.deprecated.md
Normal file
1
changelog/4370.deprecated.md
Normal file
@@ -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.).
|
||||
Reference in New Issue
Block a user