Last active
August 31, 2022 08:11
-
-
Save DarkPark/0e15a2a7a89f94b9fd26b61175cf659d to your computer and use it in GitHub Desktop.
Bash script to increase playback speed for all audio files in the current directory.
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
# bash | |
for file in *.mp3; do ffmpeg -i "$file" -filter:a "atempo=2" -vn "x2_$file" -y; done | |
# fish | |
for file in *.mp3; ffmpeg -i "$file" -filter:a "atempo=2" -vn "x2_$file" -y; end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment