Decrease volume of existing audio stream in a video ffmpeg

audioffmpegvideo

I am trying to add new audio to a video at a particular point in a video (which has its own audio stream). I used the first answer in this question to achieve it: ffmpeg placing audio at specific location

However, I am now trying to reduce the volume of the existing audio on the video so that the original audio isn't as prominent in the output file. Is there any way to do this (with ffmpeg) using the same command shown in the answer of the question I have linked?

Best Answer

You may be better off extracting the entire audio stream from the video as a WAV or MP3 -> open it in, say, Audacity -> use said audio editor to manipulate the volume/normalize the audio -> use FFMPEG to re-add the audio track...

Related Question