我想知道我是否可以混合一个5.1 AC3文件到立体声WAV文件,即6通道>2通道。我想知道如何使用via终端使用ffmpeg (或者avconv,因为它说ffmpeg是不推荐的)。
发布于 2012-10-01 23:35:11
来自man avconv的音频选项部分:
-ac[:stream_specifier] channels (input/output,per-stream)
Set the number of audio channels. For output streams it is set by
default to the number of input audio channels. For input streams
this option only makes sense for audio grabbing devices and raw
demuxers and is mapped to the corresponding demuxer options.您的基本命令行是:
avconv -i <input file> -ac 2 <output file>.wav您还可以使用AC3解码器的下调设置,即您可以配置的选项,您可以配置从5.1的6个通道将合并(向下混合)到2的立体声。检查手册中-dmix_mode和-*mixlev*选项系列中的Audio Encoders / ac3部分
https://askubuntu.com/questions/186191
复制相似问题