bash中ffmpeg的文件名空间

时间:2016-07-22 18:54:54

标签: bash macos ffmpeg spaces

我尝试使用ffmpeg为VHS备份编写一个简单的转码脚本。但我无法处理文件名中的空格。

我在脚本中一起构建我的ffmpeg命令并回显它,当我复制粘贴回显的命令时,它可以工作,但不能直接从脚本中完成。

我的剧本是否有错误?

脚本:

#!/bin/bash
# VHStoMP4Backup Script

INPUT=$1
OUTPUT="/Volumes/Data/oliver/Video/Encodiert/${2}"

command="ffmpeg \
    -i \"$INPUT\" \
    -vcodec copy \
    -acodec copy \
    \"$OUTPUT\""


if [ ! -z "$1" ] && [ ! -z "$2" ] ;
then
    echo ${command}$'\n'
    ${command}
else
    echo "missing parameters"
    echo "Usage: script INPUT_FILENAME OUTPUT_FILENAME"
fi

exit

脚本调用:

./VHStoMP4Backup.sh /Volumes/Data/oliver/Video/RAW\ Aufnahmen/Ewelina\ -\ Kasette\ 1.dv ewe.mp4

命令行输出

olivers-mac-pro:Desktop oliver$ ./VHStoMP4Backup.sh /Volumes/Data/oliver/Video/RAW\ Aufnahmen/Ewelina\ -\ Kasette\ 1.dv ewe.mp4
    ffmpeg -i "/Volumes/Data/oliver/Video/RAW Aufnahmen/Ewelina - Kasette 1.dv" -vcodec copy -acodec copy "/Volumes/Data/oliver/Video/Encodiert/ewe.mp4"

    ffmpeg version git-2016-04-16-60517c3 Copyright (c) 2000-2016 the FFmpeg developers
      built with Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
      configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libxvid --enable-libfreetype --enable-libvorbis --enable-libvpx --enable-librtmp --enable-libfaac --enable-libass --enable-libssh --enable-libspeex --enable-libfdk-aac --enable-openssl --enable-libopus --enable-libvidstab --enable-libx265 --enable-nonfree --enable-vda
      libavutil      55. 22.100 / 55. 22.100
      libavcodec     57. 34.102 / 57. 34.102
      libavformat    57. 34.101 / 57. 34.101
      libavdevice    57.  0.101 / 57.  0.101
      libavfilter     6. 42.100 /  6. 42.100
      libavresample   3.  0.  0 /  3.  0.  0
      libswscale      4.  1.100 /  4.  1.100
      libswresample   2.  0.101 /  2.  0.101
      libpostproc    54.  0.100 / 54.  0.100
    "/Volumes/Data/oliver/Video/RAW: No such file or directory

1 个答案:

答案 0 :(得分:1)

Never store a command and its arguments in a regular variable,希望仅通过扩展变量来执行命令。

使用数组存储参数,然后在调用实际命令时展开数组。

if [ $# -lt 3 ]; then
    echo "missing parameters"
    echo "Usage: script INPUT_FILENAME OUTPUT_FILENAME"
else
    INPUT=$1
    OUTPUT="/Volumes/Data/oliver/Video/Encodiert/${2}"

    args=( -i "$INPUT" -vcodec -acodec "$OUTPUT" )
    ffmpeg "${args[@]}"
fi

您需要做更多的工作才能正确记录命令,但这对于安全,正确的代码来说是一个很小的代价。

printf 'ffmpeg'
printf ' %q' "${args[@]}"
printf '\n'

(记录的命令看起来不像你期望的那样,但它可以用作有效的命令行来运行相同的命令。特别是,%q说明符倾向于使用反斜杠单独转义字符而不是在引号中加入更长的字符串。)