react-jitsi
react-jitsi copied to clipboard
React and Typescript component to include Jitsi Meet with ease
here is my config = config={{ prejoinPageEnabled: false, disableDeepLinking: true, transcribingEnabled: true }} interfaceConfig={{ APP_NAME: 'Cotes Chat', DISABLE_TRANSCRIPTION_SUBTITLES: false, LANG_DETECTION: true, TOOLBAR_BUTTONS: ['microphone', 'camera', 'closedcaptions', 'desktop', 'fullscreen', 'fodeviceselection', 'hangup', 'profile',...
I can't make the demo from https://gatteo.github.io/react-jitsi/ work: Failed to execute pre call test - {status: "authError", message: "Authenticator: Invalid token"}
This change should fix the issue #28 with the demo not starting. The fix was discussed in issue #14 but no PR was submitted for that issue.
I was successfully hiding the watermark by configuring the **SHOW_JITSI_WATERMARK: false** and **SHOW_WATERMARK_FOR_GUESTS: false** in the interfaceConfig attribute. However, the watermark shows again these days without any configuration changed. Wondering...
Join room my jitsi first request screen sharing. How chenge screen sharing to webcamera?
@gatteo Start recording button in toolbar starts the recording but when I am trying to startRecording using the external api its not working. Can you please help. `api.executeCommand('startRecording', { mode:...
Hi. When using this component, even your sample, on my camera but don't show anything on developer mode, I see a log that tells me cookie not sent in some...
It seems like an update rolled out to e.g. meet.jit.si in the last 12 hours broke the react-jitsi component. It never loads, keeping displaying the `loadingComponent`. No error or warning...
Hi, thanks for the project. And I fix some typo(invites) and update the latest `config` and `interface_config` type definition according to [jitsi-meet](https://github.com/jitsi/jitsi-meet).
``` import React, { useState } from 'react' import Jitsi from 'react-jitsi' const App = () => { const [displayName, setDisplayName] = useState('') const [roomName, setRoomName] = useState('') const [password,...