Created
May 25, 2019 18:42
-
-
Save sevro/71b97ede32a54008086f39ed298b8473 to your computer and use it in GitHub Desktop.
Quadruple volume of all videos in a folder
This file contains hidden or 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
| #!/bin/bash | |
| for i in *; | |
| do name=`echo "$i" | cut -d '.' -f1`; | |
| echo "$name"; | |
| ffmpeg -i "$i" -vol 1024 -vcodec copy "${name}_out.mp4"; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment