Difference between revisions of "Normalize video audio level"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> ffmpeg -i test.mkv -vn -af "volumedetect" -f null /dev/null # ... # [Parsed_volumedetect_0 @ 0x55d5e9291a80] mean_volume: -54.6 dB # ... ffmpeg...") Tag: visualeditor |
(No difference)
|
Latest revision as of 17:33, 29 January 2022
ffmpeg -i test.mkv -vn -af "volumedetect" -f null /dev/null
# ...
# [Parsed_volumedetect_0 @ 0x55d5e9291a80] mean_volume: -54.6 dB
# ...
ffmpeg -i test.mkv -vcodec copy -af "volume=24dB" test_boosted.mkv