Skip to content

Instantly share code, notes, and snippets.

@barakm
Created June 11, 2021 12:33
Show Gist options
  • Save barakm/2e1ce2642cda5479d9e80d8e6a88fda3 to your computer and use it in GitHub Desktop.
Save barakm/2e1ce2642cda5479d9e80d8e6a88fda3 to your computer and use it in GitHub Desktop.
Command line to re-encode mp3 files with faster playback using ffmpeg
for f in *.mp3; do ffmpeg -i "$f" -filter:a "atempo=2" fast/"$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment