28 lines
1.4 KiB
Markdown
28 lines
1.4 KiB
Markdown
[](http://www.apache.org/licenses/LICENSE-2.0)
|
|
[](https://docs.openvidu.io/en/stable/?badge=stable)
|
|
[](https://hub.docker.com/r/openvidu/openvidu-server-kms)
|
|
[](https://openvidu.discourse.group/)
|
|
|
|
[![][OpenViduLogo]](http://openvidu.io)
|
|
|
|
openvidu-virtual-background
|
|
===
|
|
|
|
Visit [docs.openvidu.io/en/stable/advanced-features/virtual-background](http://docs.openvidu.io/en/stable/advanced-features/virtual-background/)
|
|
|
|
[OpenViduLogo]: https://secure.gravatar.com/avatar/5daba1d43042f2e4e85849733c8e5702?s=120
|
|
|
|
## Run this application
|
|
|
|
```bash
|
|
# Launch OpenVidu Server
|
|
docker run --rm -d -p 4443:4443 -e openvidu.secret=MY_SECRET openvidu/openvidu-server-kms:2.21.0
|
|
|
|
# Clone and serve openvidu-filters application
|
|
git clone https://github.com/OpenVidu/openvidu-tutorials.git
|
|
cd openvidu-tutorials/openvidu-virtual-background
|
|
http-server web/
|
|
```
|
|
|
|
You will need `http-server` npm package (`sudo npm install -g http-server`), and you will need to accept the insecure certificate at [https://localhost:4443](https://localhost:4443) once you launch openvidu-server-kms docker container.
|