Skip to content

[Config Support]: Camera is live and playing video in UI but frigate says no frames recieved #13174

Closed Answered by hawkeye217
sheminasalam asked this question in Config Support
Discussion options

You must be logged in to vote

The YAML in your config file is what's causing your problem. You've got a >- after the -path: directive for bell_cam. This directs YAML to read the entire next block of text as a quoted string.

Normally that's not an issue, but you have a # on the same line as your camera url, so that is being interpreted as part of the camera url, not as a comment.

So ffmpeg is interpreting your camera url incorrectly.

Here's what you need to change:

cameras:
  bell_cam:
    ffmpeg:
      inputs:
        - path: rtsp:https://127.0.0.1:8554/bell_cam 

Just remove the >- and move the url up to the -path: line.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@sheminasalam
Comment options

@hawkeye217
Comment options

Answer selected by sheminasalam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment