@@ -538,11 +538,13 @@ You can dynamically change the layout type of a live streaming broadcast.
538538 You can add streams to a broadcast using the ``opentok.add_broadcast_stream() `` method:
539539
540540.. code :: python
541+
541542 opentok.add_broadcast_stream(broadcast_id, stream_id)
542543
543544 Conversely, streams can be removed from a broadcast with the ``opentok.remove_broadcast_stream() `` method.
544545
545546.. code :: python
547+
546548 opentok.remove_broadcast_stream(broadcast_id, stream_id)
547549
548550 For more information about OpenTok live streaming broadcasts, see the
@@ -569,6 +571,7 @@ Muting streams
569571You can mute all streams in a session using the ``opentok.mute_all() `` method:
570572
571573.. code :: python
574+
572575 opentok.mute_all(session_id)
573576
574577 # You can also specify streams to exclude (e.g. main presenter)
@@ -580,6 +583,7 @@ this method are published with audio muted. You can remove the mute state of a s
580583by calling the ``opentok.disableForceMute() `` method:
581584
582585.. code :: python
586+
583587 opentok.disable_force_mute(session_id)
584588
585589 After calling the ``opentok.disableForceMute() `` method, new streams that are published
@@ -588,6 +592,7 @@ to the session will not be muted.
588592You can mute a single stream using the ``opentok.mute_stream() `` method:
589593
590594.. code :: python
595+
591596 opentok.mute_stream(session_id, stream_id)
592597
593598 DTMF
@@ -597,6 +602,7 @@ You can send dual-tone multi-frequency (DTMF) digits to SIP endpoints. You can p
597602to all clients connected to session or to a specific connection:
598603
599604.. code :: python
605+
600606 digits = ' 12345'
601607 opentok.play_dtmf(session_id, digits)
602608
0 commit comments