Root
The Broadcast.Root
component is the React Context wrapper for Broadcast.
This is a comprehensive example of how the Broadcast elements can fit together to build an advanced in-browser streaming experience. This does not only show the Root Broadcast, but how the Root can be used to provide a state store to all of its children.
Features
- Pure React Context provider to pass the broadcast and media state store to all components
- Automatic SDP negotiation with a WebRTC WHIP endpoint
The Broadcast component utilizes WebRTC for streaming and consistently employs STUN/TURN servers for the WebRTC connection. This setup facilitates broadcasting despite corporate firewalls or port restrictions. The component adheres to WHIP/WHEP standards for ingest/egress SDP negotiation, making it compatible with any WHIP/WHEP ingest endpoint.
Anatomy
Import the components and piece the parts together.
Usage
The Player.Root
component is a React Context wrapper which passes the player
state store down to all of the child components. It is responsible for creating
the Zustand state store which is consumed
by the children, and listens for media/browser events and keeps state in sync.
The Player automatically handles different source types, such as WebRTC, MP4, and HLS. These are seamlessly integrated so that playback has low latency under all network conditions.
It is compatible with WebRTC WHEP endpoints, HLS (and low latency HLS), or typical media file playable by an HTML5 video element (MP4, WebM).
Props
ingestUrl
Configures the WHIP WebRTC ingest URL for the Broadcast
component. You can
create the ingestUrl
by passing
getIngest
a string (interpreted as a
Livepeer Studio stream key or URL), Livepeer Studio stream data, or Cloudflare
stream data. Broadcast
is compatible with all WHIP playback endpoints.
aspectRatio
Specifies the aspect ratio of the content. Recommended for an optimal
broadcasting experience to minimize
Cumulative Layout Shift. The default value is 16 / 9
.
Set to null
to disable the aspect ratio container (see Container
).
forceEnabled
Determines whether the WebRTC stream should start immediately after the user
allows access to their video/audio input. The default is false
, which previews
the video first, then streams media to the server upon activation.
audio
Controls whether audio is enabled initially for the broadcast. The default is
true
. Set to false
to start the broadcast without requesting an audio track.
This can be an object that adheres to the structure of
MediaTrackConstraints
, which will
constrain the audio track used in the broadcast.
video
Controls whether video is enabled initially for the broadcast. The default is
true
. Set to false
to start the broadcast without requesting a video track.
This can be an object that adheres to the structure of
MediaTrackConstraints
, which will
constrain the video track used in the broadcast. This is usually used to limit the resolution of the video
and improve bandwidth usage.
hotkeys
Enables keyboard hotkeys for controlling the broadcast. Enabled by default
(true
). It’s recommended to follow ARIA guidelines by keeping this enabled
unless you’re implementing custom hotkeys or there’s a conflict with existing
ones.
creatorId
Sets the creator ID for the broadcast, useful for metrics and viewership API integration.
onError
An optional callback for handling broadcasting errors. It’s called with null
when the previous error is resolved. The callback receives the parameter:
timeout
Sets the timeout duration for playback before switching to the next source, including SDP negotiation for WebRTC, waiting for WebRTC to play, and server responses. The default is 10000 milliseconds.
storage
Configures the storage option for saving persistent states like volume and video
quality. The default is localStorage
in the browser. Set to null
to disable
storage.
Was this page helpful?