Skip to content

Instantly share code, notes, and snippets.

@kidsil
Created February 17, 2021 17:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidsil/3ac6bd771311f0e7798a2b1bb5254fe9 to your computer and use it in GitHub Desktop.
Save kidsil/3ac6bd771311f0e7798a2b1bb5254fe9 to your computer and use it in GitHub Desktop.
Script to Speed up Audio to 1.5 (for podcasts on cmus)
#!/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