Id3kill ((link)) Page
mkdir test_strip cp *.mp3 test_strip/ cd test_strip id3kill *.mp3
Are you looking to , or do you need help finding a modern alternative for a specific operating system? My Favorite Smallware | Sahil's Life - WordPress.com id3kill
id3kill: reading music.mp3 id3kill: found ID3v2 tag (size 2048 bytes) id3kill: found ID3v1 tag at end id3kill: removing both tags id3kill: done mkdir test_strip cp *
# Remove all metadata from all MP3s in a folder for file in *.mp3; do ffmpeg -i "$file" -map_metadata -1 -codec copy "stripped_$file"; done id3kill
