From 3ef93255e9c441dd36084ea19c060beeb5e62b86 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 3 Feb 2025 19:29:02 +0100 Subject: [PATCH] ffmpeg --- sh/ffmpeg.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sh/ffmpeg.sh b/sh/ffmpeg.sh index 57f9d21..ed20d40 100644 --- a/sh/ffmpeg.sh +++ b/sh/ffmpeg.sh @@ -145,6 +145,8 @@ rwx_ffmpeg_output_video_slow() { rwx_ffmpeg_record_hdmi_precision() { local file="${1}" [ -n "${file}" ] || return + # shellcheck disable=SC2046,SC2312 + # LATER alternative set -- \ $(rwx_ffmpeg_input_hdmi) \ $(rwx_ffmpeg_input_dell_precision) \ @@ -158,6 +160,8 @@ rwx_ffmpeg_record_hdmi_precision() { rwx_ffmpeg_record_hdmi_yeti() { local file="${1}" [ -n "${file}" ] || return + # shellcheck disable=SC2046,SC2312 + # LATER alternative set -- \ $(rwx_ffmpeg_input_hdmi) \ $(rwx_ffmpeg_input_blue_yeti) \ @@ -178,6 +182,8 @@ rwx_ffmpeg_reduce() { local from="${3}" local to="${4}" [ -n "${output}" ] || return + # shellcheck disable=SC2046,SC2312 + # LATER alternative set -- \ $(rwx_ffmpeg_input_file "${input}" "${from}" "${to}") \ $(rwx_ffmpeg_output_video_slow) \