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 ca325f5ef9 fix(stats): Use promise-based getStats on all browsers. 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(e2ee) update docs after dropping signatures před 4 roky
flow-typed/npm flow-typed před 8 roky
modules fix(stats): Use promise-based getStats on all browsers. Get rid of the browser specific keys and use the standard spec-compliant fields for stats. Get the resolution/fps for remote streams from 'inbound-rtp' stats. Use the 'track' stats for the local resolution/fps since these take the active simulcast streams into account. před 4 roky
service Implement review changes 2 před 4 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 Update presence and skip default values (#1536) před 4 roky
JitsiConferenceErrors.js fix(ice-restart): Force client reloads when call is migrated. před 4 roky
JitsiConferenceEventManager.js feat(stats): Add a new bridge message "EndpointStats" for stats. Use the new Colibri message "EndpointStats" for broadcasting the local stats. The bridge then will be able to filter the endpoint stats and send them only to the interested parties instead of broadcasting it to all the endpoints in the call. před 4 roky
JitsiConferenceEvents.js feat(stats): Add a new bridge message "EndpointStats" for stats. Use the new Colibri message "EndpointStats" for broadcasting the local stats. The bridge then will be able to filter the endpoint stats and send them only to the interested parties instead of broadcasting it to all the endpoints in the call. před 4 roky
JitsiConnection.js feat: Skips using disco-info for features. (#1450) 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 fix(GUM-permissions): cache permissions on init. před 4 roky
JitsiMediaDevicesEvents.js fix(gum) update permissions prompt detection před 4 roky
JitsiMeetJS.js fix(gum) update permissions prompt detection před 4 roky
JitsiParticipant.js fix: Drop caps handling (#1495) 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 feat(GUM): timeout. před 4 roky
JitsiTrackErrors.js feat(GUM): timeout. před 4 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(example) simplify před 4 roky
package-lock.json fix(deps) update webrtc-adapter to v7.7.1 před 4 roky
package.json fix(deps) update webrtc-adapter to v7.7.1 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.