This is a simple video conferencing library built for Vue.js (Vue 3) with Jitsi Meet API (Low Level). The library allows you to create a voice/video conferencing solution with support for one to many connection.
Supports only Vue >= 3
$ npm i vue-video-conference
$ npm i vue-video-conference-lite
Main.js
import { createApp } from "vue";
import App from "./App.vue";
import conferencing from "vue-video-conference";
createApp(App).use(conferencing).mount("#app");
Component.vue
<template>
<VideoConference />
</template>
It is also possible to use the library directly in your component without installing it in your main.js file.
<template>
<VideoConference />
</template>
<script>
import { VideoConference } from "vue-video-conference";
export default {
components: {
VideoConference,
},
};
</script>
<style>
@import "vue-video-conference/dist/core.css";
</style>
Prop name | Type | Default | Description |
---|---|---|---|
roomName* | String | null | The name of the room to join (Should be at least 4 characters long and contains no capital letters or Spaces). |
appDomain | String | meet.jit.si | The domain of the jitsi meet server. |
roomPassword | String | null | The password of the room. |
userName | String | null | The username of the user (Should be at least 3 characters long and contains no capital letters or Spaces), If not provided a random string will be used. |
displayName | String | null | The display name of the user. |
videoConstraints | Number | 360 | The video constraints of the user (180, 360, 720). |
appToken | String | null | the JWT token used to authenticate with the server |
allowVideo | Bool | true | Set to false if you want audio only. |
allowAudio | Bool | true | Set to false if you want video only. |
debugLevel | String | ERROR | The debug level of the jitsi meet api (DEBUG, ERROR, INFO, LOG, TRACE, WARN). |
aspect | Number | 0 | The aspect ratio of the video [0 = 4:3, 1 = 16:9, 2 = 1:1, 3 = 1:2] |
alwaysShowControls | Bool | false | Set to true if you want to always show the controls, otherwise they will only show when you hover over the video. |
autoConnect | Bool | false | When set to true, the component will automatically connect to the room when it is mounted. |
The controls slot allows you to modify or add custom controls to the video conferencing component.
<template>
<VideoConference>
<template
#controls="{
// toggleFullscreen,
// activeVideoTrack,
// videoTracks,
// conference,
// muteMe,
// tracks,
// status,
// start,
// stop
}"
>
<button>Custom Button</button>
</template>
</VideoConference>
</template>
The toggleFullscreen function allows you to toggle the fullscreen mode of the video conferencing component.
The activeVideoTrack variable contains the current active video track object.
The videoTracks variable contains an array of all the video tracks.
The conference variable contains the current conference object.
The muteMe function allows you to toggle the mute state of the current user. The function takes a string as an argument which can be either "audio" or "video", if no argument is provided it will toggle the mute state of the audio.
The tracks variable contains an array of all the tracks.
The status variable contains the current status of the video conferencing component.
{
loading: false, // true if the video conferencing component is making a request to the server
show: false, // true if a video conference is active and the video conferencing component is visible
audioMuted: false, // true if the audio of the current user is muted
videoMuted: false, // true if the video of the current user is muted
}
The start function allows you to start the video conferencing component.
The stop function allows you to stop the video conferencing component.
The ready event is emitted when the video conferencing component is mounted and ready to be used.
<template>
<VideoConference @ready="onReady" />
</template>
<script>
export default {
methods: {
onReady() {
console.log("Ready");
},
},
};
</script>
The connected event is emitted when the video conferencing component is connected to the server.
<template>
<VideoConference @connected="onConnected" />
</template>
<script>
export default {
methods: {
onConnected() {
console.log("Connected");
},
},
};
</script>
The started event is emitted when the video conference is started.
<template>
<VideoConference @started="onStarted" />
</template>
<script>
export default {
methods: {
onStarted() {
console.log("Started");
},
},
};
</script>
The stopped event is emitted when the video conference has ended or stopped.
<template>
<VideoConference @stopped="onStopped" />
</template>
<script>
export default {
methods: {
onStopped() {
console.log("Stopped");
},
},
};
</script>
The joined event is emitted when the user joins the video conferencing room.
<template>
<VideoConference @joined="onJoined" />
</template>
<script>
export default {
methods: {
onJoined(conferenceObject) {
console.log("Joined");
},
},
};
</script>
The left event is emitted when a user leaves the video conferencing room.
<template>
<VideoConference @left="onLeft" />
</template>
<script>
export default {
methods: {
onLeft(userObject) {
console.log("Left");
},
},
};
</script>
The trackAdded event is emitted when a track is added.
<template>
<VideoConference @trackAdded="onTrackAdded" />
</template>
<script>
export default {
methods: {
onTrackAdded(trackObject) {
console.log("Track Added");
},
},
};
</script>
The error event is emitted when an error occurs.
<template>
<VideoConference @error="onError" />
</template>
<script>
export default {
methods: {
onError(errorMessage) {
console.log("Error");
},
},
};
</script>