Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Jaya Allamsetty 10e2fe3fec fix: Implement the encodings workaround only on Safari. před 4 roky
.github ci: add GH actions for checking the linter před 5 roky
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) před 8 roky
doc fix: add `getParticipants` to JitsiConference docs před 4 roky
flow-typed/npm flow-typed před 8 roky
modules fix: Implement the encodings workaround only on Safari. Explicitly check if all the encodings report the same scaleResolutionDownBy value before trying to ensure they match the expected values. This makes Chrome VP9 work again. před 4 roky
service ref(sdp): Add a more generic option for codec preference Use 'preferredCodec' and 'disabledCodec' under videoQuality config.js settings for setting codec preferences. Do not prefer VP9 on Firefox because of https://bugzilla.mozilla.org/show_bug.cgi?id=1633876. před 5 roky
.editorconfig remove all participants and tracks when leaving the room před 9 roky
.eslintignore e2ee: use a separate bundle for the worker před 5 roky
.eslintrc.js use the centralized jitsi eslint config (#623) před 8 roky
.flowconfig update RN to 61 před 6 roky
.gitattributes added "start muted" před 9 roky
.gitignore feat(twa) add TWA check function před 5 roky
JitsiConference.js ref: Always use a websocket if offered, remove the openSctp option. (#1426) před 4 roky
JitsiConferenceErrors.js Initial implementation of lobby rooms. (#1138) před 5 roky
JitsiConferenceEventManager.js deps: eslint-config-jitsi@latest před 5 roky
JitsiConferenceEvents.js Fix: Removes unused event. před 5 roky
JitsiConnection.js ref: Moves xmpp logs to be accessed from connection. (#1284) před 5 roky
JitsiConnectionErrors.js feat(JitsiConnectionErrors): remove unused constant (#656) před 7 roky
JitsiConnectionEvents.js Lobby required displayname (#1231) před 5 roky
JitsiMediaDevices.js feat(BrowserCapabilities) drop supportsVideo před 4 roky
JitsiMediaDevicesEvents.js feat(sanity): axe IE and Temasys plugin support 🔥🔥🔥 před 7 roky
JitsiMeetJS.js feat(external-storage): Support. před 5 roky
JitsiParticipant.js deps: eslint-config-jitsi@latest před 5 roky
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed před 8 roky
JitsiTrackError.js cleanup: Get rid of the chrome extension related code for screensharing - Use getDisplayMedia on browsers where it is supported. - desktopSharingChromeDisabled and desktopSharingFirefoxDisabled will no longer be supported. před 5 roky
JitsiTrackErrors.js cleanup: Get rid of the chrome extension related code for screensharing - Use getDisplayMedia on browsers where it is supported. - desktopSharingChromeDisabled and desktopSharingFirefoxDisabled will no longer be supported. před 5 roky
JitsiTrackEvents.js feat: use getSynchronizationSources on the receiver for remote audio levels (#1245) před 5 roky
JitsiTranscriptionStatus.js feat(transcription): Add transcription status před 8 roky
LICENSE initial commit před 9 roky
README.md Add missing options to docs and improve naming (#1354) před 5 roky
SECURITY.md Create SECURITY.md před 5 roky
authenticateAndUpgradeRole.js feat(xmpp): allow setting resource on room jid (#940) před 6 roky
index.js Prepare for webpack 2 před 8 roky
karma.conf.js fix(karma): After adding 2nd webpack configuration před 5 roky
package-lock.json fix(deps) update logger to 1.0.0 před 4 roky
package.json fix(deps) update logger to 1.0.0 před 4 roky
webpack-shared-config.js feat: Adds a method that finds the SSRC of a JitsiTrack (#1338) před 5 roky
webpack.config.js fix(karma): After adding 2nd webpack configuration před 5 roky

README.md

Jitsi Meet API library

You can use Jitsi Meet API to create Jitsi Meet video conferences with a custom GUI.

Installation

Building the sources

NOTE: you need Node.js >= 12 and npm >= 6

To build the library, just type:

npm install

To lint:

npm run lint

and to run unit tests:

npm test

if you need to rebuild lib-jitsi-meet.min.js

npm run postinstall

Both linting and units will also be done by a pre-commit hook.