Page 1 of 1

French accents are not recognized

PostPosted: Sun Jul 11, 2010 8:18 am
by airvb
Hello,
when importing my files, some tags aren't decrypted !


Image

Any ideas to manage this ?

thank you

PostPosted: Sat Aug 28, 2010 3:38 pm
by mahikeulbody

PostPosted: Sat Aug 28, 2010 6:48 pm
by Kirk
In my experience, Subsonic has some issues with international characters. That is likely the problem that you are having... I haven't bothered to find a solution though, since I don't have too many songs like that and I'll just retag the ones that don't display correctly. 8)

Kirk

PostPosted: Mon Aug 30, 2010 9:22 am
by breakolami
Effectivement, il ne faut pas d'accents dans les noms de fichiers, je m'en suis rendu compte aussi.

Si tu es sous linux tu peux résoudre ce problème avec une ligne de commande.

Place toi dans le dossier qui contient tes fichiers et tape :
Code: Select all
for i in $(ls *.txt);do mv ${i} $(echo "$i" |sed 'y/àçéèëêïîöôùüûÀÇÉÈËÊÏÎÖÔÙÜÛ/aceeeeiioouuuACEEEEIIOOUUU/');done


Si tu es sous windows je ne sais pas.