Created
February 17, 2021 17:28
-
-
Save kidsil/3ac6bd771311f0e7798a2b1bb5254fe9 to your computer and use it in GitHub Desktop.
Script to Speed up Audio to 1.5 (for podcasts on cmus)
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 file in "$@"; do | |
echo "$file" | |
ffmpeg -i $file -af atempo=1.5 faster_$file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment