Skip to content

Instantly share code, notes, and snippets.

@andy722
Created February 7, 2011 22:03
Show Gist options
  • Save andy722/815333 to your computer and use it in GitHub Desktop.
Save andy722/815333 to your computer and use it in GitHub Desktop.
Converting id3 tags to unicode
#!/bin/bash
for i in *; do
if [ "${i##*.}" == "mp3" ]; then
mp3unicode -s cp1251 --id3v1-encoding unicode --id3v2-encoding unicode $i
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment