📹 Video
The Video Widget allows you to play any video supported by video.js on your dashboard. This can be anything from a video to a live camera feed.
Adding the widget
Please check out our documentation on how to add a widget.
Configuration
Configuration | Description | Values | Default Value |
---|---|---|---|
Feed URL | The URL to the video. | - | - |
Auto play | Auto play when Homarr loaded. | yes / no | yes |
Muted audio | Mute audio by default. | yes / no | yes |
Video player controls | Add video player controls. | yes / no | no |
Screenshots
Using the widget
You can add any video supported by video.js.
tip
Want to stream your security camera feed to Homarr? Use RTSPtoWeb to convert your feed to MSE.
RTSPtoWeb
converts your RTSP streams to formats consumable in a web browser.
Installation
To install using Portainer Stacks, simply create a new stack and paste the following code into it.
To install using Docker Compose, simply create a file called
docker-compose.yml
and paste the following code into it.
docker-compose.yml
version: '3.3'
services:
deepch:
container_name: rtsp-to-web
image: ghcr.io/deepch/rtsptoweb:latest
network_mode: host
ports:
- 8083:8083
restart: unless-stopped
Then, run docker-compose up -d
in the same directory. This will start the container in the background.