I upgraded to Mint 20 but I see that the client is not yet compatible.
I built a container to try to run it in an Ubuntu 16 environment. It will run the client and stream the live feed from the camera but it will not display recorded clips.
dockerfile
FROM ubuntu:16.04
COPY bluecherry-client_2.2.6-1_amd64.deb /
RUN apt-get update && apt-get install -y sudo less
RUN dpkg -i bluecherry-client_2.2.6-1_amd64.deb; exit 0
RUN apt-get -yf install
CMD /usr/bin/bluecherry-client
You will need to allow x access locally with:
xhost +local:root
run with:
sudo docker run -ti --rm \
-e DISPLAY=unix$DISPLAY \
-v $HOME/.Xauthority:$HOME/.Xauthority \
--network=host \
bluecherry-client
STDOUT from container:
VAAPI - using X11 display âunix:0â
trying to create VAAPI device context " unix:0 "
libva info: VA-API version 0.39.0
libva info: va_getDriverName() returns -1
libva error: va_getDriverName() failed with unknown libva error,driver_name=(null)
[AVHWDeviceContext @ 0x186ca00] Failed to initialise VAAPI connection: -1 (unknown libva error).
Failed to create VAAPI device context
static bool QDeclarativeMetaType::isModule(const QByteArray&, int, int) Qt 4.7 import detected; please note that Qt 4.7 is directly reusable as QtQuick 1.x with no code changes. Continuing, but startup time will be slower.
void UpdateChecker::versionInfoReceived() Latest version info: â2.2.6â
If anyone is able to improve on that it would be a useful temp solution
thanks