Created
February 7, 2011 22:03
-
-
Save andy722/815333 to your computer and use it in GitHub Desktop.
Converting id3 tags to unicode
This file contains 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
#!/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