首页 > 解决方案 > FFMPEG 和 AVCONV 混合音频文件降低音量

问题描述

我正在使用这个命令

    foreach( $records as $record ) {
      if( $inputs == 0 ) {
          $meta_tags .= "1";
      } else {
          $meta_tags .= ":0";
      }

      $inputs++;

      $files .= ' -i ' . $path . $record;
}

$meta_tags .= "]";
$shell_command = 'ffmpeg '. $files .' -filter_complex "'. $meta_tags .'amix=inputs='. $inputs .':duration=longest" output.wav';

一切都很顺利,但是当混合完成时,它会降低音量。你能帮我么?我也试过avconv。

标签: ffmpegvolumeavconv

解决方案


推荐阅读