I want to set up jitsi meet room, where users auto join the room, the username and room will be generated for the user when the page with iframe is loaded, and I want the room be audio only.
I was looking to config files and found couple properties which should make jitsi audio only, but event when I set them, I still see video button there. Here is my whole set up. I could not find any property to auto join the room :(
Here is the code I used to audio only which does not work for me
<!doctype html>
<html>
<head>
<script src='https://meet.jit.si/external_api.js'></script>
<script>
function init(){
const domain = 'meet.jit.si';
const options = {
roomName: 'JitsiMeetAPIExample',
width: 700,
height: 700,
userInfo: {
email: '[email protected]',
displayName: 'John Doe'
},
parentNode: document.querySelector('.meet'),
configOverwrite: { startAudioOnly: true, TOOLBAR_BUTTONS: [], TOOLBAR_ALWAYS_VISIBLE: false },
interfaceConfigOverwrite: { startAudioOnly: true, TOOLBAR_BUTTONS: [], TOOLBAR_ALWAYS_VISIBLE: false },
};
const api = new JitsiMeetExternalAPI(domain, options);
}
</script>
</head>
<body class="meet" onload='init()'>
</body>
</html>
Please add jquery CDN first
Start Only works in config not in interface
See details on jitsi