ffmpeg
This commit is contained in:
parent
024172af9d
commit
3ef93255e9
1 changed files with 6 additions and 0 deletions
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue