Home Assistant Community Add-on: motionEye

is it possible with an action button to start a link with credentials without confirmation?
http://admin:[email protected]/cgi-bin/ConfigManApp.com?key=F_LOCK&code=8511

I am also looking for a solution to the “Unauthorized” issue. Did you already solve it?

No, I still have that issue. Ingress works fine, but direct URL:s causes the issue unless you already initiated a session with motionEye via the left hand side.

hi
why if I use Embed URL it tells me 401: Unauthorized even if Authentication Mode is disabled?

123

1 Like

managing the cameras in mjpeg overloads me firefox in an excessive way, with chrome instead no. happens to anyone?

What does this even mean. Please read How to help us help you - or How to ask a good question

I’m sorry. let me explain better, I put 2 cameras on hassio with platform mjpeg.
when I see them in lovelace with firefox the cpu always goes to 100%, with chrome and edge it has a standard use
it’s normal?

Hi i have a question. For both the camera’s i have a get that the model is not supported. Foscam C2M and Y-cam 1080p. Maybe i overlooked it, but i couldn’t find a list of supported devices.
Other question. when i have it up an running with a supported camera will i be able to have sound and motion detection if my camera supports it?

Hi, i found my mistake. i added the camera’s of http instead of rtsp. I could add both camera’s. Thanks for the nice add-on!

My remaining question is regarding sound. Is it possible to enable audio?

Motioneye does not support audio

1 Like

Do you know if any other add-on can?

Hi, is it possible to make the action buttons in one line?
001

Hi all, I’ve been using the motioneye add on now for a while.
But I have noticed that there is an delay of aprox. 10 seconds when there is motion detected and a webhook command is pushed to home assistant.

When I look in the add on I see nicely a picture taken from a moving vehicle. I than want to trigger an automation so that I take a snapshot of that moment within HA but apperently the webhook command comes in 10 seconds later therefore having a wrong picture…

Any one else have this problem?

With the new MotionEye integration, should it not be possible to automatically add camera’s added in the addon to HA?

I cannot add the addon as an integration since the url is invalid (I tried ‘localhost’ and the ip, set a port etc. but did not work). Any ideas?

2 Likes

I have a Tapo C200 and I’m trying to add buttons to call saved presets and TPZ but I’ve no /etc/motioneye/ folder where to create them.

Hi, would you mind sharing the step you did to create action buttons?

I’m also interested in this, haven’t been able to add mine either yet. Does anyone have a solution for this?

First you need this add-on: https://github.com/JurajNyiri/HomeAssistant-Tapo-Control

Later you create a card.

type: picture-elements
camera_view: live
camera_image: camera.sala_estar
elements:
  - type: icon
    icon: 'mdi:arrow-left-drop-circle'
    tap_action:
      action: call-service
      service: tapo_control.ptz
      service_data:
        entity_id: camera.tapo_camera_hd
        pan: LEFT
    style:
      bottom: 45%
      left: 2%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:arrow-right-drop-circle'
    tap_action:
      action: call-service
      service: tapo_control.ptz
      service_data:
        entity_id: camera.tapo_camera_hd
        pan: RIGHT
    style:
      bottom: 45%
      right: 2%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:arrow-up-drop-circle'
    tap_action:
      action: call-service
      service: tapo_control.ptz
      service_data:
        entity_id: camera.tapo_camera_hd
        tilt: UP
    style:
      top: 5%
      left: 46%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:arrow-down-drop-circle'
    tap_action:
      action: call-service
      service: tapo_control.ptz
      service_data:
        entity_id: camera.tapo_camera_hd
        tilt: DOWN
    style:
      bottom: 5%
      left: 46%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:arrow-expand-all'
    tap_action:
      action: more-info
    entity: camera.tapo_camera_hd
    style:
      top: 5%
      right: 2%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:theme-light-dark'
    tap_action:
      action: call-service
      service: tapo_control.set_day_night_mode
      service_data:
        entity_id: camera.tapo_camera_hd
        day_night_mode: auto
    entity: camera.tapo_camera_hd
    style:
      bottom: 5%
      left: 2%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:weather-sunny'
    tap_action:
      action: call-service
      service: tapo_control.set_day_night_mode
      service_data:
        entity_id: camera.tapo_camera_hd
        day_night_mode: 'off'
    entity: camera.tapo_camera_hd
    style:
      bottom: 5%
      left: 11%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'
  - type: icon
    icon: 'mdi:weather-night'
    tap_action:
      action: call-service
      service: tapo_control.set_day_night_mode
      service_data:
        entity_id: camera.tapo_camera_hd
        day_night_mode: 'on'
    entity: camera.tapo_camera_hd
    style:
      bottom: 5%
      left: 20%
      color: white
      opacity: 0.5
      transform: 'scale(1.5, 1.5)'