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
You can stop the recording of a started Archive using the ``opentok.stop_archive(archive_id)``method.
194
+
You can also do this using the ``archive.stop()`` method of an ``Archive`` instance.
165
195
166
196
.. code:: python
167
197
@@ -195,7 +225,7 @@ filter by session ID. This method returns an instance of the ``ArchiveList`` cla
195
225
196
226
.. code:: python
197
227
198
-
archive_list = opentok.list_archive()
228
+
archive_list = opentok.list_archives()
199
229
200
230
# Get a specific Archive from the list
201
231
archive = archive_list.items[i]
@@ -371,7 +401,8 @@ Working with Broadcasts
371
401
372
402
OpenTok broadcast lets you share live OpenTok sessions with many viewers.
373
403
374
-
You can use the ``opentok.start_broadcast()`` method to start a live streaming for an OpenTok session. This broadcasts the session to an HLS (HTTP live streaming) or to RTMP streams.
404
+
You can use the ``opentok.start_broadcast()`` method to start a live stream for an OpenTok session.
405
+
This broadcasts the session to HLS (HTTP live streaming) or to RTMP streams.
375
406
376
407
To successfully start broadcasting a session, at least one client must be connected to the session.
377
408
@@ -403,6 +434,45 @@ The live streaming broadcast can target one HLS endpoint and up to five RTMP ser
@@ -495,7 +615,7 @@ repository and follow the Walkthroughs:
495
615
Documentation
496
616
-------------
497
617
498
-
Reference documentation is available at http://www.tokbox.com/opentok/libraries/server/python/reference/index.html.
618
+
Reference documentation is available at https://tokbox.com/developer/sdks/python/reference/.
499
619
500
620
Requirements
501
621
------------
@@ -532,7 +652,7 @@ The Client.create_session() method now includes a media_mode parameter, instead
532
652
This version of the SDK includes significant improvements such as top level entity naming, where the Opentok class is now `Client`. We also implemented a standardised logging module, improved naming conventions and JWT generation to make developer experience more rewarding.
0 commit comments