modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jaya Allamsetty 2d4cd935cb fix(codec-selection): Codec selection fixes. 2 lat temu
.github fix(ci) test type generation 2 lat temu
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) 8 lat temu
doc Improve token.md 2 lat temu
modules fix(codec-selection): Codec selection fixes. 1. Checks peer's preferred codec in p2p case. Mobile and web have different preferred codecs. 2. Log an error message when the preferred codec is not offered by JVB. 3. Clean up code related to deprecated config.js settings 'preferH264' and 'disableH264'. 4. Refactor the codec selection logic so that correct codec is picked. 2 lat temu
service feat: Handles conferenceIQ error with redirect. 2 lat temu
types ref(JitsiParticipant) Alpha sort the methods. Delete hasAnyVideoTrackWebRTCMuted method as it is not used anymore. 2 lat temu
.editorconfig remove all participants and tracks when leaving the room 9 lat temu
.eslintignore feat(ts) add auto-generated type declarations 3 lat temu
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions 3 lat temu
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum 3 lat temu
.gitignore feat(ts) generate autp types when packing 2 lat temu
JitsiConference.js fix(codec-selection): Codec selection fixes. 1. Checks peer's preferred codec in p2p case. Mobile and web have different preferred codecs. 2. Log an error message when the preferred codec is not offered by JVB. 3. Clean up code related to deprecated config.js settings 'preferH264' and 'disableH264'. 4. Refactor the codec selection logic so that correct codec is picked. 2 lat temu
JitsiConferenceErrors.spec.ts feat: Handles conferenceIQ error with redirect. 2 lat temu
JitsiConferenceErrors.ts feat: Handles conferenceIQ error with redirect. 2 lat temu
JitsiConferenceEventManager.js feat: Handles conferenceIQ error with redirect. 2 lat temu
JitsiConferenceEvents.spec.ts feat(e2ee) add ability to verify participants using a SAS mechanism 2 lat temu
JitsiConferenceEvents.ts feat(e2ee) add ability to verify participants using a SAS mechanism 2 lat temu
JitsiConnection.js feat: Skips using disco-info for features. (#1450) 4 lat temu
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 lat temu
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors 3 lat temu
JitsiConnectionEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 lat temu
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents 3 lat temu
JitsiMediaDevices.js fix(device-change): enable on iOS Safari < 15.4 3 lat temu
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 lat temu
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents 3 lat temu
JitsiMeetJS.ts Remove support for legacy endpoint based signaling. (#2147) 2 lat temu
JitsiParticipant.js ref(JitsiParticipant) Alpha sort the methods. Delete hasAnyVideoTrackWebRTCMuted method as it is not used anymore. 2 lat temu
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed 8 lat temu
JitsiTrackError.js chore(lint) tame the new linter 3 lat temu
JitsiTrackErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 lat temu
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors 3 lat temu
JitsiTrackEvents.spec.ts feat(ssrc-rewriting) Add initial implementation (#2136) 2 lat temu
JitsiTrackEvents.ts feat(ssrc-rewriting) Add initial implementation (#2136) 2 lat temu
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete 3 lat temu
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus 3 lat temu
LICENSE initial commit 9 lat temu
README.md fix(doc) update building 3 lat temu
SECURITY.md Create SECURITY.md 5 lat temu
TypeScript.md feat(doc) add plan for the TypeScript conversion process 3 lat temu
authenticateAndUpgradeRole.js fix(JitsiConference) simplify auth-and-upgrade procedure 3 lat temu
globals.d.ts feat(ts) migrate JitsiMeetJS to TS 2 lat temu
index.js fix(build) don't pollute global state in ESM build 2 lat temu
karma.conf.js feat(build) embed jquery slim 2 lat temu
package-lock.json chore(deps): bump loader-utils from 1.4.0 to 1.4.2 2 lat temu
package.json feat(ts) generate autp types when packing 2 lat temu
tsconfig.json feat(ts) generate autp types when packing 2 lat temu
webpack-shared-config.js Set the ljm commit hash in the correct file. 2 lat temu
webpack.config.js feat(ts) introduce TypeScript 3 lat temu

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 >= 7

To build the library, just type:

npm install
npm run build

To lint:

npm run lint

and to run unit tests:

npm test

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

npm run build

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