- or download this
-x '1 2 3' -y 4 5
- or download this
--extra-ffmpeg-param='-x '\''1 2 3'\'' -y 4 5'
- or download this
--extra-ffmpeg-param='-x "1 2 3" -y 4 5'
- or download this
# to_shell_lit() - Creates a shell literal
# Usage: printf '%s\n' "$( to_shell_lit "..." "..." "..." )"
...
}
--extra-ffmpeg-param="$( to_shell_lit -x "$x" )"
- or download this
-X '-x 1 2 3' -X '-y 4'
- or download this
-X "-x $x" -X '-y 4'
- or download this
-X 'x=1 2 3' -X 'y=4'
- or download this
-X "x=$x" -X 'y=4'