Skip to content

Instantly share code, notes, and snippets.

@Himura2la
Last active September 10, 2021 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Himura2la/cfeeaf7d34c0be3e6122c5208dad1d10 to your computer and use it in GitHub Desktop.
Save Himura2la/cfeeaf7d34c0be3e6122c5208dad1d10 to your computer and use it in GitHub Desktop.
Remove ID3 tags from mp3 files
mkdir t
mv *.mp3 t
pushd t
find . -type f -name '*.mp3' -exec ffmpeg -i '{}' -vn -codec:a copy -map_metadata -1 '../{}' \;
popd
rm -r t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment