Eufy - Too long to respond

I have an automation that connects my Eufy camera feed to my Alexa Show displays when triggered by a motion sensor.
However many times it does not work and I get an error message on the Alexa Show “It took too long to respond”.
Anyone has a suggestion ?

This is the automation:

lias: "#  Lobby Motion - Camera"
description: ""
triggers:
  - entity_id:
      - binary_sensor.lobby_motion_detected
    from: "off"
    to: "on"
    trigger: state
conditions: []
actions:
  - data:
      media_content_id: show lobby
      media_content_type: custom
    target:
      entity_id:
        - media_player.zzzz_bedroom
        - media_player.zzzz_office
        - media_player.xxx_yyy_s_echo_show
    action: media_player.play_media
  - delay:
      hours: 0
      minutes: 1
      seconds: 30
  - data:
      media_content_id: exit show lobby
      media_content_type: custom
    target:
      entity_id:
        - media_player.zzzz_bedroom
        - media_player.zzzz_office
        - media_player.xxx_yyy_s_echo_show
    action: media_player.play_media
mode: single