amix 选项/命令 normalize 已停止?

amix 选项/命令 normalize 已停止?

我想用 amix 对我的音频进行求和,而不是在求和之前将每个输入乘以 1/n(其中 n 为输入数量)。

https://ffmpeg.org/ffmpeg-filters.html#amix 文档说有一个 normalize 选项可以关闭规范化,还有一个 normalize 命令可以执行相同操作。

运行命令:

ffmpeg -h filter=amix

    Filter amix
  Audio mixing.
    Inputs:
        dynamic (depending on the options)
    Outputs:
       #0: default (audio)
amix AVOptions:
  inputs            <int>        ..F.A... Number of inputs. (from 1 to 1024) (default 2)
  duration          <int>        ..F.A... How to determine the end-of-stream. (from 0 to 2) (default longest)
     longest                      ..F.A... Duration of longest input.
     shortest                     ..F.A... Duration of shortest input.
     first                        ..F.A... Duration of first input.
  dropout_transition <float>      ..F.A... Transition time, in seconds, for volume renormalization when an input stream ends. (from 0 to INT_MAX) (default 2)

遗憾的是,看起来该选项不存在。

我尝试了 amix=normalize=0 以及 asendcmd=c='0 amix normalize 0',但错误消息报告选项/命令不存在,如帮助页面中所示。

这是我的 ffmpeg 版本,apt 说它是最新的:

     ffmpeg -version
ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04)
configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil      55. 78.100 / 55. 78.100
libavcodec     57.107.100 / 57.107.100
libavformat    57. 83.100 / 57. 83.100
libavdevice    57. 10.100 / 57. 10.100
libavfilter     6.107.100 /  6.107.100
libavresample   3.  7.  0 /  3.  7.  0
libswscale      4.  8.100 /  4.  8.100
libswresample   2.  9.100 /  2.  9.100
libpostproc    54.  7.100 / 54.  7.100

如何才能在不进行 1/n 乘法的情况下对音频进行求和?除了 amix 之外还有其他过滤器吗?

感谢您。

答案1

@Gyan 在评论中指出我从 Ubuntu apt 包管理器下载的 ffmpeg 版本已过期。从 ffmpeg.org/download.html 下载最新版本将修复此问题。我对 Linux 的东西还是个菜鸟……我希望我能以某种方式在 apt 中声明我从网站下载的这个 ffmpeg 版本,因为下载许多程序并覆盖包管理器总是令人困惑,然后你会忘记你有什么以及它在哪里。我会寻找一种方法来做到这一点,包管理器仍然非常简洁。

相关内容