如何使用ffmpeg工作获取bash脚本将mp3转换为wav?

时间:2017-04-16 05:22:57

标签: bash audio ffmpeg type-conversion

每次我运行此脚本都不起作用。我得到输出bash:command not found

我运行了bash -x来查看问题是什么,但我不明白错误

bash -x mp3towav.sh 
+ for f in '*.mp3'
+ ffmpeg -i '' -acodec pcm_s16le -ac 1 -ar .wav
ffmpeg version 3.3 Copyright (c) 2000-2017 the FFmpeg developers
  built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
  libavutil      55. 58.100 / 55. 58.100
  libavcodec     57. 89.100 / 57. 89.100
  libavformat    57. 71.100 / 57. 71.100
  libavdevice    57.  6.100 / 57.  6.100
  libavfilter     6. 82.100 /  6. 82.100
  libavresample   3.  5.  0 /  3.  5.  0
  libswscale      4.  6.100 /  4.  6.100
  libswresample   2.  7.100 /  2.  7.100
  libpostproc    54.  5.100 / 54.  5.100
Trailing options were found on the commandline.
: No such file or directory

脚本就是这个

  1 #!/bin/bash
  2 for f in *.mp3; do ffmpeg -i "$file" -acodec pcm_s16le -ac 1 -ar "${file%.mp3}".wav;done

运行提供的更正代码时,我仍然会收到错误:

ffmpeg version 3.3 Copyright (c) 2000-2017 the FFmpeg developers
  built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
  libavutil      55. 58.100 / 55. 58.100
  libavcodec     57. 89.100 / 57. 89.100
  libavformat    57. 71.100 / 57. 71.100
  libavdevice    57.  6.100 / 57.  6.100
  libavfilter     6. 82.100 /  6. 82.100
  libavresample   3.  5.  0 /  3.  5.  0
  libswscale      4.  6.100 /  4.  6.100
  libswresample   2.  7.100 /  2.  7.100
  libpostproc    54.  5.100 / 54.  5.100
Trailing options were found on the commandline.
Input #0, mp3, from 'hiraeth [ep].mp3':
  Duration: 00:23:39.36, start: 0.025057, bitrate: 128 kb/s
    Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s
    Metadata:
      encoder         : LAME3.99r
    Side data:
      replaygain: track gain - -4.100000, track peak - unknown, album gain - unknown, album peak - unknown, 
At least one output file must be specified

1 个答案:

答案 0 :(得分:1)

解决方案当然是在codeforester的评论中:

#!/bin/bash
for file in *.mp3; do
   ffmpeg -i "$file" -acodec pcm_s16le -ac 1 -ar 44100 "${file%.mp3}".wav
done

(每条评论LordNeckbeard增加了44100) 一些提示:

1)如果您将脚本分成多行,则更容易发现这样的错误。

2)运行bash -x时,不要过分关注错误;它给出了输出命令。它是什么。在这种情况下:

+ ffmpeg -i '' -acodec pcm_s16le -ac 1 -ar .wav

此行的结论是ffmpeg以''作为输入文件并以.wav作为输出运行。