Last active
December 25, 2024 14:30
-
-
Save frankrausch/f871b573060b4d0cf34a7d86077e433f to your computer and use it in GitHub Desktop.
Slow down or speed up all MP3 files in a folder with FFmpeg.
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
#/bin/sh | |
speed="0.7" | |
mkdir "speed-${speed}x" | |
for f in *.mp3 | |
do ffmpeg -i "$f" -filter:a "atempo=${speed}" "./speed-${speed}x/$f" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so cool, thanks for your help.