Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added AC800 265 config #10962

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions docs/docs/configuration/camera_specific.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,29 @@ cameras:
height: # <- optional, by default Frigate tries to automatically detect resolution
```

### Annke AC800

If the devices you are using support H.265 then it will be able to play the video. Bellow is an example of using go2rtc to restream and repackage the stream. Make sure to login into the camera using the default username and password to change the stream configuration to include audio. This can be found in config->Vide/Audio->Video Type .
rgonzales98 marked this conversation as resolved.
Show resolved Hide resolved

```yaml
go2rtc:
streams:
frontdriveway :
- rtsp://user:password@camera-ip:554/H265/ch1/main/av_stream
- "ffmpeg:frontdriveway#audio=aac" # make sure this matches the name of the stream if you change it
cameras:
annkeac800: # <------ Name the camera
rgonzales98 marked this conversation as resolved.
Show resolved Hide resolved
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/frontdriveway # <----- Update for your camera
roles:
- detect
- record
detect:
width: # <- optional, by default Frigate tries to automatically detect resolution
height: # <- optional, by default Frigate tries to automatically detect resolution
rgonzales98 marked this conversation as resolved.
Show resolved Hide resolved
```

### Blue Iris RTSP Cameras

You will need to remove `nobuffer` flag for Blue Iris RTSP cameras
Expand Down