From c91fc9d2fea574423510d2713f3a5137682b7efd Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Fri, 11 Nov 2022 10:17:20 +0100 Subject: [PATCH] Fix typos --- src/misc/coders/Encoders/video/H264V4L2M2M.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/misc/coders/Encoders/video/H264V4L2M2M.js b/src/misc/coders/Encoders/video/H264V4L2M2M.js index a65bd61..7d7757d 100644 --- a/src/misc/coders/Encoders/video/H264V4L2M2M.js +++ b/src/misc/coders/Encoders/video/H264V4L2M2M.js @@ -105,11 +105,11 @@ function createMapping(settings, skills) { '-avoid_negative_ts', 'disabled', '-max_muxing_queue_size', - '2048' + '2048', ]; if (settings.gop !== 'auto') { - local.push('-g', `${Math.round(parseInt(settings.fps) * parseInt(settings.gop)).toFixed(0)}`,); + local.push('-g', `${Math.round(parseInt(settings.fps) * parseInt(settings.gop)).toFixed(0)}`); local.push('-keyint_min', `${parseInt(settings.fps)}`); } @@ -164,8 +164,9 @@ function Coder(props) { - V4L2_M2M is unstable and experimental.
- For Raspberry Pi (3/4), OpenMAX IL, which requires a 32-bit operating system, is recommended. + V4L2_M2M is unstable and experimental. +
+ For Raspberry Pi (3/4) OpenMAX IL is recommended, which requires a 32-bit operating system.
@@ -177,7 +178,7 @@ function Coder(props) { - Increasing the HLS segment length by 2-3 * keyframe interval is recommended (Processing & Control.) + Increasing the HLS segment length by 2-3 * keyframe interval is recommended (Processing & Control). {ffversion === 5 && ( @@ -186,7 +187,7 @@ function Coder(props) { )} - Force key framesr} type="text" value={settings.force_key_frames} onChange={update('force_key_frames')} /> + Force key frames} type="text" value={settings.force_key_frames} onChange={update('force_key_frames')} /> Capture buffer} type="number" value={settings.num_capture_buffers} onChange={update('num_capture_buffers')} />