5.8 KiB
| title | description |
|---|---|
| Video modes | Key differences between available video modes on PiKVM and tips for using them |
Video modes
PiKVM V3, V4 Plus/Mini and all DIY devices based on HDMI-CSI bridge provides three video streaming modes. This page explains the key differences between them and helps you to achieve optimal video performance.
The video mode can be switched in the System menu in the Web UI. If you don't see the switch, probably your browser does not support H.264 video.
!!! tip "Quick tips"
* Good network: use `WebRTC` or `Direct` mode, set `H.264 gop = 0`.
* Bad network and `WebRTC` mode: Set `H.264 gop = 30`.
* Bad network and `Direct` mode: Set `H.264 gop = 0`.
* If the `WebRTC` mode is not working, try the `Direct`.
* The `Direct` mode doesn't support audio yet. If you need audio, but `WebRTC` is not working, follow [this guide](webrtc_config.md).
Settings
-
H.264 kbps (Bitrate) - with a large value, the video quality will be better, but the network traffic will increase.
-
H.264 gop (Group of Pictures) - the number of frames between which a reference frame must be forcibly added. The recommended values are described above.
WebRTC H.264 mode
This is the default mode. It'is using the efficient H.264 encoding to save traffic. The video is streamed over WebRTC protocol which you may have encountered when you used video calls in Discord or Google Chat. Since WebRTC does not use HTTP for video, establishing a connection is quite tricky (but PiKVM automates 99% of cases). If you have problems with the WebRTC mode, please check this guide.
!!! info "Advantages / Disadvantages"
* ✅ Supported by all modern browsers.
* ✅ Provides [two-way audio](audio.md) on PikVM [V3](v3.md) and [V4 Plus/Mini](v4.md).
* ❌ The video may be lost due to a poor connection (like mobile internet, bad Wi-Fi, etc.),
or because of the router settings, when WebRTC is given low priority.
* ❌ It may be blocked at all in some networks.
* ❌ Sometimes the latency may increase slightly due to the peculiarities of WebRTC processing in all browsers.
Direct H.264 mode
The new experimental mode for real-time streaming, introduced by PiKVM. It also uses H.264 encoding, but streams the video over regular HTTP (WebSocket).
!!! info "Advantages / Disadvantages"
* ✅ Very stable on poor networks, better than WebRTC (based on our tests and user reviews).
* ✅ It is not blocked by firewalls because it appears to be regular HTTPS traffic.
* ✅ The latency is low and stable too.
* ❌ No audio support right now (but it will).
* ❌ Some [older browsers](https://caniuse.com/webcodecs) doesn't have the WebCodes support needed for this mode.
Legacy MJPEG mode
Good old Motion JPEG. This is the way IP cameras have been streaming videos to browsers since ancient times.
The stream is just infinite queue of JPEGs that replace each other in <img> HTML tag.
There is no point in using it now if one of the previous modes is working.
!!! info "Advantages / Disadvantages"
* ✅ Sometimes the H.264 is disabled in a browser by OS license limitations (for example, in Red Had Linux or Debian).
But MJPEG is working always.
* ✅ It is not blocked by firewalls because it appears to be regular HTTPS traffic.
* ✅ Low latency if you have a good network.
* ❌ No audio support.
* ❌❌❌ Consumes a HUGE amount of traffic. No Wi-Fi, no mobile, nothing but cable connection will work.
What if H.264 is not supported by browser at all
There are some Linux distro's that require more work to be able to use H.264, this may include any RedHat or Debian variant. Here some examples:
-
In case of Chromium on Fedora, you can connect the RPM Fusion repo and then install the
chromium-freeworldpackage instead ofchromium. -
On Debian GNU/Linux and Firefox, make sure the OpenH264 Plugin both exists and is enabled. Press
Ctrl+Shift+Ato open theAdd-on Manager, then pressPlugins. There you should see OpenH264 Video Codec provided by Cisco Systems, Inc. Make sure it is enabled by pressing the "more options" button (tree dots), then pressingAlways Activate.
Video recording
At the moment, it is not possible to record videos in a convenient way from the Web UI, but a small trick in the console can be used to record videos without sound. It's only available on all PiKVM models which support H.264 video.
Available since KVMD 4.110
??? example "Recording video from terminal on Linux or Mac OS"
1. Install `ffmpeg` and `websocat`.
2. Let's assume that your PiKVM is located on `https://pikvm` and uses a self-signed certificate.
Request the stream from it from the first opened console on your PC (not PiKVM):
```console
[user@host ~]$ websocat -k wss://pikvm/api/ws?stream=1 -H X-KVMD-User:admin -H X-KVMD-Passwd:admin
```
3. Keeping the previous command running, open a new terminal and run the video recording process:
```console
[user@host ~]$ websocat -b -B 10000000 -k wss://pikvm/api/media/ws?video=h264 -H X-KVMD-User:admin -H X-KVMD-Passwd:admin | ffmpeg -use_wallclock_as_timestamps 1 -i pipe: -c:v copy my_captured_video.mp4
```
4. Same can be done on PiKVM itself, locally.
5. Press `Ctrl+C` to stop the recording.
??? example "Take a screenshot from terminal on PiKVM"
To take a screenshot, switch filesystem to RW-mode like in previous example and run the stream.
Next, take a screenshot:
```console
[root@pikvm ~]# curl --unix-socket /run/kvmd/ustreamer.sock http://localhost/snapshot -o /tmp/screen.jpg
```