Last active
September 10, 2021 20:55
-
-
Save Himura2la/cfeeaf7d34c0be3e6122c5208dad1d10 to your computer and use it in GitHub Desktop.
Remove ID3 tags from mp3 files
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
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