From e1f68bc73f7c46867ce7e8b68411800709a2a4c8 Mon Sep 17 00:00:00 2001 From: stickpin <630000+stickpin@users.noreply.github.com> Date: Thu, 7 May 2020 08:40:37 -0700 Subject: [PATCH] Homekit camera codecs support docs (#13332) --- source/_integrations/homekit.markdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/_integrations/homekit.markdown b/source/_integrations/homekit.markdown index 2db21b3589b..dab9f296453 100644 --- a/source/_integrations/homekit.markdown +++ b/source/_integrations/homekit.markdown @@ -223,6 +223,18 @@ homekit: required: false type: integer default: 1316 + video_codec: + description: Only for `camera` entities. FFmpeg video codec for transcoding. `copy` option reduces CPU load when video source already encoded with `H264` (MPEG4). `h264_omx` option is only available with custom FFmpeg builds and enables GPU Hardware acceleration on Raspberry Pi. + required: false + type: string + default: libx264 + available options: copy, libx264, h264_omx + audio_codec: + description: Only for `camera` entities. FFmpeg audio codec for transcoding. `copy` option reduces CPU load when audio source already encoded with `libopus`. + required: false + type: string + default: libopus + available options: copy, libopus {% endconfiguration %}