Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Jaya Allamsetty f0dd403951 fix(JingleSession) start modification queue after session is established. il y a 2 ans
.github fix(ci) test type generation il y a 2 ans
doc fix(doc) calirfy how to generate the keys for public validation il y a 2 ans
modules fix(JingleSession) start modification queue after session is established. Pull initial offer/answer tasks out of the modification queue and execute them right away. Only track and codec related operations that necessitate a renegotiation cycle need to be pushed to the modification queue. The queue execution is paused until the session is established. This avoids track operations being executed before the session is established. This fixes an issue seen in p2p connections where sources of the initiator are not signaled to the remote since the tracks are added while the initiator is waiting for a session-accept from the peer. il y a 2 ans
patches fix: Downgrade strophe.js to fix react-native. il y a 2 ans
service Feat ssrc rewriting (#2192) il y a 2 ans
types fix(e2ee) call correct function to update key il y a 2 ans
.editorconfig remove all participants and tracks when leaving the room il y a 9 ans
.eslintignore feat: Drops external connect optimization. il y a 2 ans
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions il y a 3 ans
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum il y a 3 ans
.gitignore feat(ts) generate autp types when packing il y a 2 ans
.npmrc chore(deps) strophe.js@1.6.0 il y a 2 ans
JitsiConference.js fix(p2p) Enable p2p for Safari il y a 2 ans
JitsiConferenceErrors.spec.ts feat: Handles conferenceIQ error with redirect. il y a 2 ans
JitsiConferenceErrors.ts feat: Handles conferenceIQ error with redirect. il y a 2 ans
JitsiConferenceEventManager.js fix: Clean up rooms when redirecting to a new one. il y a 2 ans
JitsiConferenceEvents.spec.ts Feat ssrc rewriting (#2192) il y a 2 ans
JitsiConferenceEvents.ts Feat ssrc rewriting (#2192) il y a 2 ans
JitsiConnection.js feat: Skips using disco-info for features. (#1450) il y a 4 ans
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete il y a 3 ans
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors il y a 3 ans
JitsiConnectionEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete il y a 3 ans
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents il y a 3 ans
JitsiMediaDevices.js fix(device-change): enable on iOS Safari < 15.4 il y a 2 ans
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete il y a 3 ans
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents il y a 3 ans
JitsiMeetJS.ts fix(audio-levels) check if local stats are supported before starting stats collection. il y a 2 ans
JitsiParticipant.js Feat ssrc rewriting (#2192) il y a 2 ans
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed il y a 8 ans
JitsiTrackError.js chore(lint) tame the new linter il y a 3 ans
JitsiTrackErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete il y a 3 ans
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors il y a 3 ans
JitsiTrackEvents.spec.ts feat(ssrc-rewriting) Add initial implementation (#2136) il y a 2 ans
JitsiTrackEvents.ts feat(ssrc-rewriting) Add initial implementation (#2136) il y a 2 ans
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete il y a 3 ans
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus il y a 3 ans
LICENSE initial commit il y a 9 ans
README.md fix(doc) update building il y a 3 ans
SECURITY.md Create SECURITY.md il y a 4 ans
TypeScript.md feat(doc) add plan for the TypeScript conversion process il y a 3 ans
authenticateAndUpgradeRole.js fix(JitsiConference) simplify auth-and-upgrade procedure il y a 2 ans
globals.d.ts feat(ts) migrate JitsiMeetJS to TS il y a 2 ans
index.js fix(build) don't pollute global state in ESM build il y a 2 ans
karma.conf.js feat(build) embed jquery slim il y a 2 ans
package-lock.json chore(deps): bump engine.io and socket.io il y a 2 ans
package.json fix: Downgrade strophe.js to fix react-native. il y a 2 ans
tsconfig.json feat(ts) generate autp types when packing il y a 2 ans
webpack-shared-config.js chore(deps) strophe.js@1.6.0 il y a 2 ans
webpack.config.js feat(ts) introduce TypeScript il y a 3 ans

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.