Tapo Cameras with Frigate

This is what is working perfectly for me. The cloud_pw is the same password I use to login to the web. I didn’t have to to the MD5Hash as suggested by the article.

My cloud password is Upper and Lower case with numbers but no special characters.

Hope this helps.

streams:
    office:
      - rtsp://frig_u:[email protected]/stream1
      - tapo://[email protected]
      - ffmpeg:office#audio=aac#audio=opus

i have working Audio but no working webRTC / two-way talk.
Tapo C225 camera.
Frigate in a Docker with host Network without Home Assistant…

mqtt:
  enabled: false

go2rtc:
  streams:
    wohnzimmer:
      - rtsp://camera:[email protected]/stream1
      - ffmpeg:wohnzimmer#audio=aac
      - tapo://admin:[email protected]
    wohnzimmer_sub:
      - rtsp://camera:[email protected]/stream2
    zimmer:
      - rtsp://camera:[email protected]/stream1
      - ffmpeg:zimmer#video=copy#audio=acc#hardware
      - tapo://admin:[email protected]
    zimmer_sub:
      - rtsp://camera:[email protected]/stream2
  webrtc:
    candidates:
      - stun:8555
cameras:
  wohnzimmer: # <--- this will be changed to your actual camera later
#    enabled: true
    ffmpeg:
      inputs:
        - path: rtsp://127.0.0.1:8554/wohnzimmer
          input_args: preset-rtsp-restream

          roles:
            - record
            - audio
        - path: rtsp://camera:[email protected]/stream2
          input_args: preset-rtsp-restream
          roles:
            - detect
      output_args:




        record: preset-record-generic-audio-aac
    live:
      streams:
        wohnzimmer: wohnzimmer

    audio:
      enabled: true

    onvif:
      host: 192.168.1.21
      port: 2020
      user: camera
      password: pw

    notifications:
      enabled: true
  zimmer: # <--- this will be changed to your actual camera later
#    enabled: true
    ffmpeg:
      inputs:
        - path: 
            rtsp://camera:[email protected]/stream1?video=copy&audio=aac
          input_args: preset-rtsp-restream
          roles:
            - record
            - audio
        - path: rtsp://camera:[email protected]/stream2
          input_args: preset-rtsp-restream
          roles:
            - detect
      output_args:
        record: preset-record-generic-audio-copy
    onvif:
      host: 192.168.1.22
      port: 2020
      user: camera
      password: pw
    notifications:
      enabled: true
detect:
  enabled: true
version: 0.16-0
notifications:
  enabled: true

I did have the IP of my Host in the Candidates once… didn’t help.

      - 192.168.1.5:8555

Any clue on how to enable WebRTC ?