store audio by default

This commit is contained in:
Blake Blackshear 2021-10-16 06:06:49 -05:00
parent b2e05afff2
commit e297e02800
4 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -305,7 +305,6 @@ RECORD_FFMPEG_OUTPUT_ARGS_DEFAULT = [
"1",
"-c",
"copy",
"-an",
]