Skip to content

Commit

Permalink
store audio by default
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeblackshear committed Oct 16, 2021
1 parent b2e05af commit e297e02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/docs/configuration/camera_specific.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Note that mjpeg cameras require encoding the video into h264 for recording, and

```yaml
output_args:
record: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c:v libx264 -an
rtmp: -c:v libx264 -an -f flv
record: -f segment -segment_time 10 -segment_format ts -reset_timestamps 1 -strftime 1 -c:v libx264
rtmp: -c:v libx264 -f flv
```

### RTMP Cameras
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ ffmpeg:
# Optional: output args for detect streams (default: shown below)
detect: -f rawvideo -pix_fmt yuv420p
# Optional: output args for record streams (default: shown below)
record: -f segment -segment_time 10 -segment_format mp4 -reset_timestamps 1 -strftime 1 -c copy -an
record: -f segment -segment_time 10 -segment_format ts -reset_timestamps 1 -strftime 1 -c copy
# Optional: output args for rtmp streams (default: shown below)
rtmp: -c copy -f flv

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A solid green image means that frigate has not received any frames from ffmpeg.

### How can I get sound or audio in my recordings?

By default, Frigate removes audio from recordings to reduce the likelihood of failing for invalid data. If you would like to include audio, you need to override the output args to remove `-an` for where you want to include audio. The recommended audio codec is `aac`. Not all audio codecs are supported by RTMP, so you may need to re-encode your audio with `-c:a aac`. The default ffmpeg args are shown [here](configuration/index#ffmpeg).
The recommended audio codec is `aac`. Not all audio codecs are supported by RTMP, so you may need to re-encode your audio with `-c:a aac`. The default ffmpeg args are shown [here](configuration/index#full-configuration-reference).

### My mjpeg stream or snapshots look green and crazy

Expand Down
1 change: 0 additions & 1 deletion frigate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ class BirdseyeConfig(FrigateBaseModel):
"1",
"-c",
"copy",
"-an",
]


Expand Down

0 comments on commit e297e02

Please sign in to comment.