الملفات
codepill-sfu/public/views/iframe.html
2025-03-20 04:29:36 +01:00

37 أسطر
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MiroTalk SFU Iframe demo</title>
<!-- Replace sfu.mirotalk.com with YOUR-DOMAIN-NAME -->
<script src="https://sfu.mirotalk.com/js/Iframe.js" defer></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const domain = 'sfu.mirotalk.com'; // YOUR-DOMAIN-NAME
const options = {
room: 'test',
roomPassword: 0,
name: 'mirotalk',
audio: 0,
video: 0,
screen: 0,
hide: 0,
notify: 0,
duration: 'unlimited', // HH:MM:SS
token: null,
width: '100vw',
height: '100vh',
parentNode: document.querySelector('#meet'),
}; // https://docs.mirotalk.com/mirotalk-sfu/join-room/
const api = new IframeApi(domain, options);
});
</script>
</head>
<body>
<div id="meet"></div>
</body>
</html>