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)``
171
-
method. You can also do this using the ``archive.stop()`` method of an ``Archive`` instance.
193
+
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.
172
195
173
196
.. code:: python
174
197
@@ -202,7 +225,7 @@ filter by session ID. This method returns an instance of the ``ArchiveList`` cla
202
225
203
226
.. code:: python
204
227
205
-
archive_list = opentok.list_archive()
228
+
archive_list = opentok.list_archives()
206
229
207
230
# Get a specific Archive from the list
208
231
archive = archive_list.items[i]
@@ -378,7 +401,8 @@ Working with Broadcasts
378
401
379
402
OpenTok broadcast lets you share live OpenTok sessions with many viewers.
380
403
381
-
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.
382
406
383
407
To successfully start broadcasting a session, at least one client must be connected to the session.
384
408
@@ -410,8 +434,14 @@ The live streaming broadcast can target one HLS endpoint and up to five RTMP ser
@@ -532,7 +615,7 @@ repository and follow the Walkthroughs:
532
615
Documentation
533
616
-------------
534
617
535
-
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/.
536
619
537
620
Requirements
538
621
------------
@@ -569,7 +652,7 @@ The Client.create_session() method now includes a media_mode parameter, instead
569
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