modified lib-jitsi-meet dev repo
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ů.
Boris Grozev 16fe22e9c9 Advertise support for opus/red. 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 Update docs and examples před 5 roky
flow-typed/npm flow-typed před 7 roky
modules Advertise support for opus/red. 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 4 roky
.editorconfig remove all participants and tracks when leaving the room před 9 roky
.eslintignore feat(sanity): axe IE and Temasys plugin support 🔥🔥🔥 před 7 roky
.eslintrc.js use the centralized jitsi eslint config (#623) před 7 roky
.flowconfig update RN to 61 před 5 roky
.gitattributes added "start muted" před 9 roky
.gitignore build: add integration with webpack-bundle-analyzer před 5 roky
JitsiConference.js feat: send conference.left analytics event 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 4 roky
JitsiConferenceEvents.js Fix: Removes unused event. před 4 roky
JitsiConnection.js ref: Moves xmpp logs to be accessed from connection. (#1284) před 4 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 deps: eslint-config-jitsi@latest před 4 roky
JitsiMediaDevicesEvents.js feat(sanity): axe IE and Temasys plugin support 🔥🔥🔥 před 7 roky
JitsiMeetJS.js feat(prejoin): Expose method to make a precall test před 4 roky
JitsiParticipant.js deps: eslint-config-jitsi@latest před 4 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 7 roky
LICENSE initial commit před 9 roky
README.md doc: update README 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(tests): source maps for Karma před 4 roky
package-lock.json fix(tests): source maps for Karma před 4 roky
package.json fix(tests): source maps for Karma před 4 roky
webpack.config.js fix(tests): source maps for Karma před 4 roky

README.md

Jitsi Meet API library

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

Installation

Checkout the examples.

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.