Help for this page

Select Code to Download


  1. or download this
    -x '1 2 3' -y 4 5
    
  2. or download this
    --extra-ffmpeg-param='-x '\''1 2 3'\'' -y 4 5'
    
  3. or download this
    --extra-ffmpeg-param='-x "1 2 3" -y 4 5'
    
  4. 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" )"
    
  5. or download this
    -X '-x 1 2 3' -X '-y 4'
    
  6. or download this
    -X "-x $x" -X '-y 4'
    
  7. or download this
    -X 'x=1 2 3' -X 'y=4'
    
  8. or download this
    -X "x=$x" -X 'y=4'