Quotidien Shaarli

Tous les liens d'un jour sur une page.

August 16, 2026

Pitivi, a free and open source video editor for Linux

Pitivi is a Free video editor with a beautiful and intuitive user interface, a clean codebase and a fantastic community.

increase the audio volume in a video file

I am looking for a native Linux software that can increase the audio volume of a video file.

To increase the volume by a specific decibel amount (e.g., +10dB) while copying the video stream:

ffmpeg -i input.mp4 -vcodec copy -af "volume=10dB" output.mp4

To increase the volume by a linear multiplier (e.g., 2x louder):

ffmpeg -i input.mp4 -vcodec copy -af "volume=2.0" output.mp4