Skip to content

Instantly share code, notes, and snippets.

@ViktorNova
Last active June 28, 2017 07:18
Show Gist options
  • Save ViktorNova/574a301b0730e54f4567029e6cf21496 to your computer and use it in GitHub Desktop.
Save ViktorNova/574a301b0730e54f4567029e6cf21496 to your computer and use it in GitHub Desktop.
Boost volume on a folder full of videos
# 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