github roflcoopter/viseron v1.8.0b5
1.8.0b5 - Fix of labels file in amd64 images.

latest releases: v3.0.0b3, v3.0.0b2, v3.0.0b1...
pre-release3 years ago

Changes and new Features

  • New config option require_motion for labels.
    If set to true, the recorder will stop when motion is no longer detected, even if the object still is.
    This is useful to avoid never ending recordings of stationary objects, such as a car on a driveway.

Fixes

  • The labels file was corrupted in the amd64* images, so labels of objects made no sense.

Previous 1.8.0 betas

Breaking changes

  • port is now required for substream

Changes and new Features

  • Complete rewrite of all Dockerfiles(!).
    Multistage builds are now used extensively which dramatically reduces the size of the containers.
    All containers are now built on Azure Pipelines which means i no longer have to build them all locally(!!).
    Cross-building is done using Balenalibs baseimages, which means we now have (experimental) support for the RPi4(!!!).
    This new way of working with containers mean i can easily support different hardware, such as the Jetson Nano in the near future.
    Multiarch images are also in play, which means you dont need to pull different images based on your architecture, unless you want a specific one, like the amd64 CUDA version. Closes #1, closes #66

  • Static MJPEG streams can now be configured, which provides better performance due to processing only happening once
    See the new section on [Static MJPEG Streams(https://github.com/roflcoopter/viseron#static-mjpeg-streams) in the README for more information. Closes #23

  • An MJPEG stream is now served for each camera.
    A number of query parameters are available to control resolution, what is drawn on the frames etc.
    See the new section in the README for more information. Closes #23

  • stream_format and port is now supported for substream. Closes #112

  • Viseron no longer runs as root in the containers. You can now set PUID and PGID as environment variables to control the user.
    I you are using docker-compose it might look like this:

    version: "2.4"
    
    services:
      viseron:
        image: roflcoopter/viseron:latest
        container_name: viseron
        volumes:
          - <recordings path>:/recordings
          - <config path>:/config
          - /etc/localtime:/etc/localtime:ro
        environment:
          - PUID=1000
          - PGID=1000

Fixes

  • Better reporting of errors when loading EdgeTPU, fixes #76

Docker images will be on Docker Hub shortly

Don't miss a new viseron release

NewReleases is sending notifications on new releases.