@@ -484,7 +484,8 @@ def start_archive(
484
484
output_mode = OutputModes .composed ,
485
485
stream_mode = StreamModes .auto ,
486
486
resolution = None ,
487
- layout = None
487
+ layout = None ,
488
+ multi_archive_tag = None
488
489
):
489
490
"""
490
491
Starts archiving an OpenTok session.
@@ -535,6 +536,8 @@ def start_archive(
535
536
StreamModes.manual to explicitly select streams to include in the the archive, using the
536
537
OpenTok.add_archive_stream() and OpenTok.remove_archive_stream() methods.
537
538
539
+ :param String multi_archive_tag (Optional): If specified, triggers a new simultaneous archive on the session.
540
+
538
541
:rtype: The Archive object, which includes properties defining the archive,
539
542
including the archive ID.
540
543
"""
@@ -559,7 +562,8 @@ def start_archive(
559
562
"hasVideo" : has_video ,
560
563
"outputMode" : output_mode .value ,
561
564
"resolution" : resolution ,
562
- "streamMode" : stream_mode .value
565
+ "streamMode" : stream_mode .value ,
566
+ "multiArchiveTag" : multi_archive_tag
563
567
}
564
568
565
569
if layout is not None :
@@ -1314,6 +1318,8 @@ def start_broadcast(self, session_id, options, stream_mode=BroadcastStreamModes.
1314
1318
String 'resolution' optional: The resolution of the broadcast, either "640x480"
1315
1319
(SD, the default) or "1280x720" (HD)
1316
1320
1321
+ String 'multiBroadcastTag' optional: If specified, triggers a new simultaneous broadcast on the session.
1322
+
1317
1323
:param BroadcastStreamModes stream_mode (Optional): Determines the broadcast stream handling mode.
1318
1324
Set this to BroadcastStreamModes.auto (the default) to have streams added automatically. Set this to
1319
1325
BroadcastStreamModes.manual to explicitly select streams to include in the the broadcast, using the
0 commit comments