Embeddable WebRTC Sender
The easiest way to get started with Vindral WebRTC Ingest is to use our CDN-hosted embed version or our QoS version.
webrtc-ingest-embed.vindral.com
hosts the latest version of the embedded WebRTC Ingest.
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.