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.
Saúl Ibarra Corretgé 0d8b0b83d8 fix(xmpp) catch errors in XMPP session resumption il y a 1 an
.github fix(ci) update action versions il y a 2 ans
doc Update jwt docs key generation. il y a 2 ans
modules fix(xmpp) catch errors in XMPP session resumption il y a 1 an
patches fix: Downgrade strophe.js to fix react-native. il y a 2 ans
service feat(visitors): Checks for visitors support per room. il y a 1 an
types Expose `track.conference` field in types il y a 1 an
.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 Unify events and output single TypeScript declaration (#2407) il y a 1 an
.npmrc chore(deps) strophe.js@1.6.0 il y a 2 ans
JitsiConference.js fix(ssrc-rewriting): Fire track removed/added instead of owner changed. When an existing SSRC for a remote track gets re-mapped from one source to another, fire a TRACK_REMOVED event followed by TRACK_ADDED event instead of TRACK_OWNER_CHANGED event. This should simplify the application logic for track handling. il y a 1 an
JitsiConferenceErrors.spec.ts feat: Detects different not-allowed errors. il y a 1 an
JitsiConferenceErrors.ts feat: Detects different not-allowed errors. il y a 1 an
JitsiConferenceEventManager.js fix(ssrc-rewriting): Check for track owner/sourceName before calling TRACK_OWNER_SET. When the bridge WS is re-established, jvb sends the full map of audio and video sources. Without the check, the library will end up firing TRACK_REMOVED and TRACK_ADDED for all the exiting tracks. Also, process audio and video source maps only on JVB sessions. il y a 1 an
JitsiConferenceEvents.spec.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. il y a 1 an
JitsiConferenceEvents.ts fix(codec-selection): Include visitor codecs. Include visitor codecs published by Jicofo while calculating the intersection set for the conference. il y a 1 an
JitsiConnection.js fix(flags): Init flags before creating XMPP conn. This allows us to set defaults through jitsi-meet. Also remove undocumented setting enableJoinAsVisitor that is no longer needed. il y a 1 an
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 feat: Introduces connection event for custom properties. (#2493) il y a 1 an
JitsiConnectionEvents.ts feat: Introduces connection event for custom properties. (#2493) il y a 1 an
JitsiMediaDevices.js Unify events and output single TypeScript declaration (#2407) il y a 1 an
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.spec.ts feat(RTC): add support for creating non-standard tracks (#2409) il y a 1 an
JitsiMeetJS.ts feat: Detects different not-allowed errors. il y a 1 an
JitsiParticipant.js fix(types): fix last few types (#2417) il y a 1 an
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 feat(RTC): add support for creating non-standard tracks (#2409) il y a 1 an
JitsiTrackErrors.ts feat(RTC): add support for creating non-standard tracks (#2409) il y a 1 an
JitsiTrackEvents.spec.ts squash: Address review comments. il y a 1 an
JitsiTrackEvents.ts squash: Address review comments. il y a 1 an
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 5 ans
TypeScript.md feat(doc) add plan for the TypeScript conversion process il y a 3 ans
authenticateAndUpgradeRole.js fix(types): fix last few types (#2417) il y a 1 an
globals.d.ts feat(ts) migrate JitsiMeetJS to TS il y a 3 ans
index.js fix(build) don't pollute global state in ESM build il y a 3 ans
karma.conf.js feat(build) embed jquery slim il y a 3 ans
package-lock.json fix(watchrtc) fix consecutive call issue il y a 1 an
package.json fix(watchrtc) fix consecutive call issue il y a 1 an
tsconfig.json fix(ts) move dts file to types/ il y a 1 an
webpack-shared-config.js feat(build) remove export from build script il y a 1 an
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.