Today i tried to import some MP3 Files from an external drive to my music folder, when i noticed that many of my tags are getting wrong interpreted. For example, files with letters such as á,ó,í,ö,ä etc. are shown as a question mark within a rectangle, something like this:�
All i did is mv all mp3 files from the external fat32 drive to my own, which is linux. Is there a way to remove this "special character" i.e. with a letter? What i unsuccessfully tried was sed -e 's/\?/ae/g' like this:
id3v2 -l song.mp3 | grep Artist | cut -d ':' -f 2 | sed -e 's/\?/ae/g'
What i realized when reading this Link, that some of those letters as ä,ö,á are interpreted with digits such as \341. I think this has something to do with the FAT32 to linux transcoding, but i'm not sure at all. Somebody knows how to replace them correctly with sed - other solutions welcome ;-). Thanks for your suggestions!