首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >混合5.1 AC3到立体声WAV?

混合5.1 AC3到立体声WAV?
EN

Ask Ubuntu用户
提问于 2012-09-10 14:52:23
回答 1查看 4.4K关注 0票数 2

我想知道我是否可以混合一个5.1 AC3文件到立体声WAV文件,即6通道>2通道。我想知道如何使用via终端使用ffmpeg (或者avconv,因为它说ffmpeg是不推荐的)。

EN

回答 1

Ask Ubuntu用户

发布于 2012-10-01 23:35:11

来自man avconv的音频选项部分:

代码语言:javascript
复制
-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.

您的基本命令行是:

代码语言:javascript
复制
avconv -i <input file> -ac 2 <output file>.wav

您还可以使用AC3解码器的下调设置,即您可以配置的选项,您可以配置从5.1的6个通道将合并(向下混合)到2的立体声。检查手册中-dmix_mode-*mixlev*选项系列中的Audio Encoders / ac3部分

票数 2
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/186191

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档