Embeddable WebRTC Sender
Deprecated
WebRTC ingest is deprecated for new browser-based integrations. Use MoQ ingest with the Publisher SDK for new browser publishing workflows.
This page remains available for existing WebRTC ingest deployments that still use the embeddable sender.
For existing WebRTC integrations, you can use our CDN-hosted embed version or our QoS version.
webrtc-ingest-embed.vindral.com hosts the latest version of the embedded WebRTC ingest client.
Example using iframe
<iframe
src="https://webrtc-ingest-embed.vindral.com/?core.streamKey=example&core.width=1920&core.height=1080&core.maxBitrate=3000000"
frameborder="0"
allow="camera; microphone"
width="800"
height="600"
></iframe>
Set core.streamKey to your private stream key.
allow="camera; microphone" is needed to let the iframe ask for permission to use your camera and microphone.
Some common core option parameters are
core.streamKey- (required) the private stream key, used for regular stream authorization when broadcasting.core.width- (default 1280) width and height properties can be used to request a certain resolution from the webcam.core.height- (default 720)core.maxBitrate- (default 2000000) used to set the maximum bitrate.