Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Jaya Allamsetty f881b3c745 fix(JingleSessionPC) Do not recycle m-lines when sources leave and join. 3 år sedan
.github fix: Adds missing checks for clean repo. 3 år sedan
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) 8 år sedan
doc feat(xmpp) remove clientNode config option 4 år sedan
modules fix(JingleSessionPC) Do not recycle m-lines when sources leave and join. Recycling the m-line by rejecting it and then re-using is causing issues where sometimes the track addition fails. When a new ssrc is added to an m-line that was rejected and port is changed back to the default port, sometimes the remote sdp returned by browser wouldn't contain the newly added ssrcs and the track addition fails as a result. Error: No SSRC lines found in remote SDP for remote stream[msid=854882f8-audio-1,type=audio] at Ca._remoteTrackAdded (https://web-cdn.jitsi.net/meetjitsi_5885.2601/libs/lib-jitsi-meet.min.js?v=5885.2601:2:439103) at Ca._usesUnifiedPlan.onTrack (https://web-cdn.jitsi.net/meetjitsi_5885.2601/libs/lib-jitsi-meet.min.js?v=5885.2601:2:432207) at RTCPeerConnection.r (https://web-cdn.jitsi.net/meetjitsi_5885.2601/libs/lib-jitsi-meet.min.js?v=5885.2601:2:680736) . 3 år sedan
service feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
types feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
.editorconfig remove all participants and tracks when leaving the room 9 år sedan
.eslintignore feat(ts) add auto-generated type declarations 3 år sedan
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions 4 år sedan
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum 3 år sedan
.gitignore feat(build) don't build library on postinstall 3 år sedan
JitsiConference.js feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiConferenceErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiConferenceErrors.ts feat(ts) TypeScript enum for JitsiConferenceErrors 3 år sedan
JitsiConferenceEventManager.js fix: Cleans up rooms after failure to join. 3 år sedan
JitsiConferenceEvents.spec.ts feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiConferenceEvents.ts feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiConnection.js feat: Skips using disco-info for features. (#1450) 4 år sedan
JitsiConnectionErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors 3 år sedan
JitsiConnectionEvents.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents 3 år sedan
JitsiMediaDevices.js fix(RTCUtils) Return false for device change checks on mobile Safari. 4 år sedan
JitsiMediaDevicesEvents.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents 3 år sedan
JitsiMeetJS.js feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiParticipant.js feat: Adds a property to JitsiParticipant is hidden from recorder. (#1889) 3 år sedan
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed 9 år sedan
JitsiTrackError.js chore(lint) tame the new linter 4 år sedan
JitsiTrackErrors.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors 3 år sedan
JitsiTrackEvents.js feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiTrackEvents.spec.ts feat(multi-stream-support) Add track streaming status (#1855) 3 år sedan
JitsiTranscriptionStatus.spec.ts feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus 3 år sedan
LICENSE initial commit 10 år sedan
README.md Add missing options to docs and improve naming (#1354) 5 år sedan
SECURITY.md Create SECURITY.md 5 år sedan
TypeScript.md feat(doc) add plan for the TypeScript conversion process 3 år sedan
authenticateAndUpgradeRole.js feat(xmpp): allow setting resource on room jid (#940) 6 år sedan
index.js Prepare for webpack 2 8 år sedan
karma.conf.js feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
package-lock.json chore(deps) make sure no SSH URLs get generated in package-lock.json 3 år sedan
package.json chore(deps) make sure no SSH URLs get generated in package-lock.json 3 år sedan
tsconfig.json feat(test) add tests to monitor regressions in the TypeScript conversion 3 år sedan
webpack-shared-config.js feat(multi-stream-support) Handle SDP munging for multiple local/remote streams per ep. (#1868) 3 år sedan
webpack.config.js feat(ts) introduce TypeScript 3 år sedan

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.