Show camera in fullscreen

Hi,

I usea conditional card to show acamerapicture of the last visitor (last ring) of my Doorbird camera.
If somebody ring, then a virtual switch will be set to ‘on’ by an automation to show the live view of the camera.
I want to open the live view of the camera in fullscreen mode, or at least much bigger than in the little “cardbox”.
Is there any possibility to show the live view bigger?

Here is my yaml code:

type: vertical-stack
cards:
  - type: conditional
    conditions:
      - entity: input_boolean.doorbird_klingel_virtual_switch
        state: 'off'
    card:
      type: picture-glance
      title: Letzer Besucher
      entities:
        - entity: camera.klingel_live
      camera_image: camera.klingel_last_ring
  - type: conditional
    conditions:
      - entity: input_boolean.doorbird_klingel_virtual_switch
        state: 'on'
    card:
      type: picture-glance
      title: LIVE
      entities:
        - entity: camera.klingel_live
      camera_image: camera.klingel_live
      camera_view: live

I would love to know how to make the camera full screen as well.

something new from here? I am interested too

Would also be interested in this feature.

Guys, this is a way you can achieve this: use the browser_mod integration
This is a working example:

show_name: true
show_icon: true
type: button
tap_action:
  action: fire-dom-event
  browser_mod:
    service: browser_mod.popup
    data:
      title: Camera 1
      size: fullscreen
      content:
        type: custom:webrtc-camera
        url: <rtsp://...>
        ui: true
icon: mdi:cctv

2 Likes