Last active
June 28, 2017 07:18
-
-
Save ViktorNova/574a301b0730e54f4567029e6cf21496 to your computer and use it in GitHub Desktop.
Boost volume on a folder full of videos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This ONLY works in BASH. (maybe others, but it does NOT work in Fish shell) | |
# This is meant to be done by first moving all the videos into a subdirectory | |
# Then the output files with boosted volume are dumped one directory up | |
for i in *.avi; do ffmpeg -i $i -vcodec copy -af "volume=10dB" ../$i; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment