Avconv 无法重新采样 6 个通道

Avconv 无法重新采样 6 个通道

我收到一条消息,无法将 6 个通道重新采样为 2 个通道音频。这是我用来转换为 h.264+aac 的命令:

avconv -i /var/movies/Some.movie.2010.BDRip.XviD.AC3.-HQ-ViDEO.avi -strict experimental -acodec aac -ac 2 -ab 128k -ar 44100 -y -c:v libx264 -qscale 1 -s 640x480 -g 25 -r 25 /path/to

确切信息:

Resampling output channel count must be 1 or 2 for mono input; 1, 2 or 6 for stereo input; or N for N channel input.
Can not resample 6 channels @ 48000 Hz to 2 channels @ 44100 Hz

我已经尝试了很多配置,已经厌倦了实验。

有视频大师吗?能给点建议就太好了。

谢谢。

这是 avconv 信息:

avconv version 0.8.6-4:0.8.6-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
  built on Apr  2 2013 17:02:36 with gcc 4.6.3

答案1

获取新版本具有 libavresample,即 Libav 9 或 git master。

相关内容