You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
# Release 3.12.0
2
+
- Add new `quantization_parameter` option for archives to control video encoding quality. Values between 15-40, where smaller values generate higher quality and larger archives, larger values generate lower quality and smaller archives. QP uses variable bitrate (VBR).
3
+
1
4
# Release 3.11.0
2
5
- OpenTok SDK now accepts Vonage credentials so it's possible to use the existing OpenTok SDK with the Vonage Video API
Copy file name to clipboardExpand all lines: opentok/archives.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,8 @@ class Archive(object):
112
112
10 minutes. To generate a new URL, call the Archive.listArchives() or OpenTok.getArchive() method.
113
113
114
114
:ivar max_bitrate: The maximum video bitrate for the archive, in bits per second. The minimum value is 100,000 and the maximum is 6,000,000.
115
+
116
+
:ivar quantization_parameter: The quantization parameter (QP) for video encoding quality. Values between 15-40, where smaller values generate higher quality and larger archives.
Copy file name to clipboardExpand all lines: opentok/opentok.py
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -648,6 +648,7 @@ def start_archive(
648
648
layout=None,
649
649
multi_archive_tag=None,
650
650
max_bitrate=None,
651
+
quantization_parameter=None,
651
652
):
652
653
"""
653
654
Starts archiving an OpenTok session.
@@ -708,6 +709,8 @@ def start_archive(
708
709
709
710
:param String max_bitrate (Optional): The maximum video bitrate for the archive, in bits per second. The minimum value is 100,000 and the maximum is 6,000,000.
710
711
712
+
:param Number quantization_parameter (Optional): The quantization parameter (QP) for video encoding quality. Values between 15-40, where smaller values generate higher quality and larger archives, larger values generate lower quality and smaller archives. QP uses variable bitrate (VBR).
713
+
711
714
:rtype: The Archive object, which includes properties defining the archive,
0 commit comments