Skip to content

Commit c30ec90

Browse files
authored
Add HomeKit RPi transcoding (#26953)
1 parent 4cb080a commit c30ec90

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

source/_integrations/homekit.markdown

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,18 @@ homekit:
253253
type: integer
254254
default: 1316
255255
video_codec:
256-
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.
256+
description: Only for `camera` entities. FFmpeg video codec for transcoding. `copy` option reduces CPU load when video source is already encoded with `H264` (MPEG4). `h264_v4l2m2m` can be used with supported hardware, e.g., the Raspberry Pi, to offload encoding to hardware. The `h264_omx` option is only available with custom FFmpeg builds and enables GPU Hardware acceleration on Raspberry Pi.
257257
required: false
258258
type: string
259259
default: libx264
260-
available options: copy, libx264, h264_omx
260+
available options: copy, libx264, h264_v4l2m2m, h264_omx
261+
video_profile_names:
262+
description: Only for `camera` entities. FFmpeg video profile names for transcoding, only relevant if `video_codec` isn't `copy`. Some encoders, e.g., the Raspberry Pi's `h264_v4l2m2m`, don't use the standard `["baseline", "main", "high"]` profile names but expects `["0", "2", "4"]` instead. Use this option to override the default names, if needed.
263+
required: false
264+
type: list
265+
default: ["baseline", "main", "high"]
261266
audio_codec:
262-
description: Only for `camera` entities. FFmpeg audio codec for transcoding. `copy` option reduces CPU load when audio source already encoded with `libopus`.
267+
description: Only for `camera` entities. FFmpeg audio codec for transcoding. `copy` option reduces CPU load when audio source is already encoded with `libopus`.
263268
required: false
264269
type: string
265270
default: libopus

0 commit comments

Comments
 (0)