This commit is contained in:
Marc Beninca 2025-02-03 19:29:02 +01:00
parent 024172af9d
commit 3ef93255e9
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -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) \