strangely the encodings from some music I got from a friend with Windows 7 OS show up with a wrong encoding in nautlius . I already tried it with
convmv --notest -r -f windows-1255 -t utf-8 *
but it didn't fix it. It rather but another wrong encoding. I tried also with latin1 and latin3. Since I don't know what the original encoding was and I can't find that out, I keep wondering what my options are.
Thx for any advice.
To try all the encodings, choose one of your files, eg mychosenfile.mp3m, and then loop through all the encodings. With luck you will find one that seems to be ok. This just lists the possible new names:
Alternatively, you can rename the files to the song track and title taken from the id3 tag if they have one. For example, (this just echo's the mv command):
To remove special characters from all filenames, use
detox
:You may also pass
-n
to see what it will done and verify it sounds sensible.To rename all files according to their music tags, use
lltag
:You should consider passing
--dry-run
to first invocation to see what will be done; pass--yes
if you are tired of answering questions (might affect quality of new names in case of missing tags and the like).More details are in
man detox
andman lltag
.