Sample Lovelace Use of FFMPEG and RTSP Feed

Will someone please share (or point me to) their ui-lovelace card(s) using the camera platform FFMPEG and the rtsp feed? I’m wanting a card that shows the live feed from one of my security cameras. Although I don’t think I formatted it correctly below for this post (sorry), here is my current configuration.yaml entry:

camera:

  • platform: ffmpeg
    input: rtsp://userid:[email protected]:554/cam/realmonitor?channel=1&subtype=0
    name: Garage
1 Like

Here’s the view I use:

  - id: cameras
    icon: mdi:cctv
    title: Surveillance
    cards:
      - type: picture-glance
        title: Garage
        camera_image: camera.garage_clear
        entities:
          - switch.garage_record
      - type: picture-glance
        title: Common Room
        camera_image: camera.common_room_clear
        entities:
          - switch.common_room_record
1 Like

Thank you. I’m up and running now!