modified lib-jitsi-meet dev repo
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ů.
Saúl Ibarra Corretgé bde9a7bd90 deps(webrtc-adapter) update to version 8.1.1 před 3 roky
.github fix: Adds missing checks for clean repo. před 4 roky
connection_optimization remove jitsiRegionInfo from lib-jitsi-meet (#490) před 8 roky
doc fix(docs) improve documentation that jwt works on websocket před 3 roky
modules fix(ScreenObtainer) Fix broken high resolution SS capture. před 3 roky
service fix(RTC) Add AV1 to CodecMimeType unit test před 3 roky
types ref(RTC) Make the remove and add track method names more generic. Since Track effects and mute/unmute operations use the same flow, i.e., removing/adding the track from the RTCPeerConnection but not from TPC, make the names of the methods involved more generic. před 3 roky
.editorconfig remove all participants and tracks when leaving the room před 10 roky
.eslintignore feat(ts) add auto-generated type declarations před 4 roky
.eslintrc.js chore(deps) update Babel and ESLint to the latest versions před 4 roky
.gitattributes feat(ts) migrate JitsiTrackErrors to typescript enum před 4 roky
.gitignore feat(build) don't build library on postinstall před 4 roky
JitsiConference.js ref(RTC) Make the remove and add track method names more generic. Since Track effects and mute/unmute operations use the same flow, i.e., removing/adding the track from the RTCPeerConnection but not from TPC, make the names of the methods involved more generic. před 3 roky
JitsiConferenceErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiConferenceErrors.ts feat(ts) TypeScript enum for JitsiConferenceErrors před 4 roky
JitsiConferenceEventManager.js fix: Cleanups chat room on destroy. před 3 roky
JitsiConferenceEvents.spec.ts ref(face-expressions) refactor face landmarks namings (#1977) před 3 roky
JitsiConferenceEvents.ts ref(face-expressions) refactor face landmarks namings (#1977) před 3 roky
JitsiConnection.js feat: Skips using disco-info for features. (#1450) před 5 roky
JitsiConnectionErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiConnectionErrors.ts feat(ts) TypeScript enum for JitsiConnectionErrors před 4 roky
JitsiConnectionEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiConnectionEvents.ts feat(ts) TypeScript enum for JitsiConnectionEvents před 4 roky
JitsiMediaDevices.js fix(device-change): enable on iOS Safari < 15.4 před 3 roky
JitsiMediaDevicesEvents.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiMediaDevicesEvents.ts feat(ts) TypeScript enum for JitsiMediaDevicesEvents před 4 roky
JitsiMeetJS.js fix(multi-stream) Check if the flags config options is defined. před 3 roky
JitsiParticipant.js fix: Fixes boolean/string comparison. před 3 roky
JitsiParticipantEvents.js fix(caps): add event to notify when caps version for a user is changed před 9 roky
JitsiTrackError.js chore(lint) tame the new linter před 4 roky
JitsiTrackErrors.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiTrackErrors.ts ref(ts) format JitsiTrackErrors před 4 roky
JitsiTrackEvents.spec.ts typescript implementation of JitsiTrackEvents před 3 roky
JitsiTrackEvents.ts typescript implementation of JitsiTrackEvents před 3 roky
JitsiTranscriptionStatus.spec.ts fix(ts) clean-up TS tests where conversion is complete před 4 roky
JitsiTranscriptionStatus.ts feat(ts) TypeScript enum for JitsiTranscriptionStatus před 4 roky
LICENSE initial commit před 10 roky
README.md fix(doc) update building před 4 roky
SECURITY.md Create SECURITY.md před 5 roky
TypeScript.md feat(doc) add plan for the TypeScript conversion process před 4 roky
authenticateAndUpgradeRole.js fix(JitsiConference) simplify auth-and-upgrade procedure před 3 roky
index.js Prepare for webpack 2 před 8 roky
karma.conf.js feat(test) add tests to monitor regressions in the TypeScript conversion před 4 roky
package-lock.json deps(webrtc-adapter) update to version 8.1.1 před 3 roky
package.json deps(webrtc-adapter) update to version 8.1.1 před 3 roky
tsconfig.json feat(test) add tests to monitor regressions in the TypeScript conversion před 4 roky
webpack-shared-config.js chore(deps) bump async from 0.9.0 to 3.2.3 před 3 roky
webpack.config.js feat(ts) introduce TypeScript před 4 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 >= 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.