【问题标题】:avconv output_volume option - trying to understand the man pageavconv output_volume 选项 - 试图理解手册页
【发布时间】: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


    【解决方案1】:

    试试这样的:

    for i in *.wav; do
        avconv -i "$i" -af volume=6dB:precision=fixed "$i{%.*}".mp3
    done
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-01-17
      • 2014-03-06
      • 1970-01-01
      • 2023-03-05
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多