Record audio and video from your camera, microphone, or screen share directly in the browser.
<iframe id="rec-demo" src="/online/webapp/recorder" width="100%" height="500" frameborder="0" allow="camera; microphone; display-capture" style="border:1px solid #ccc; border-radius:4px;"></iframe>
<script>window._wsConnect('rec-demo', 'recSocket');</script>
<iframe src="https://sgapps.io/online/webapp/recorder"
width="100%" height="600" frameborder="0"
allow="camera; microphone; display-capture"></iframe>Required permissions: Theallowattribute must includecamera,microphone, anddisplay-capturefor the recorder to access media devices.
<script src="https://sgapps.io/components/window-socket/index.js"></script>
<script>
var socket = new WindowSocket(document.getElementById('rec-demo').contentWindow);
socket.start();
socket.on("webapp::connection::ping", function () {
socket.fire("webapp::instance::embed-mode", true);
});
</script>