【发布时间】:2016-02-15 00:17:18
【问题描述】:
我正在尝试通过avconv 命令中的output_volume 选项增加我的输入.wav 文件的音量。我想将音量提高 6 dB,类似于 man page 中的演示。
我的命令是脚本格式的
for i in *.wav; do avconv -i "$i" output_volume=volume=6dB:precision=fixed "$i{%.*}".mp3;done
但我收到以下错误。我看到很多与FFmpeg 相关的搜索结果,但我对avconv 没有帮助
Unable to find a suitable output format for 'output_volume=volume=6dB:precision=
fixed'
手册页中的一般 sytanx 是:
avconv [global options] [[infile options][‘-i’ infile]]... {[outfile options] outfile}...
我无法解释文档..
【问题讨论】:
标签: shell command manpage avconv