From 2f50822e7e6fa575c0f4ec2e59f3a73a57a64552 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Wed, 29 Dec 2021 10:19:11 -0300 Subject: [PATCH] Add example for audio conversion tip --- docs/docs/faqs.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/docs/faqs.md b/docs/docs/faqs.md index 536bd7268..65a02348b 100644 --- a/docs/docs/faqs.md +++ b/docs/docs/faqs.md @@ -17,7 +17,14 @@ By default, Frigate removes audio from recordings to reduce the likelihood of fa :::tip -When using `-c:a aac`, do not forget to replace `-c copy` with `-c:v copy`. +When using `-c:a aac`, do not forget to replace `-c copy` with `-c:v copy`, example: + +```diff title="frigate.yml" +ffmpeg: + output_args: +- 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 mp4 -reset_timestamps 1 -strftime 1 -c:v copy -c:a aac +``` :::