[PROBLEM] Characters with accents in DTS files - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [PROBLEM] Characters with accents in DTS files (/showthread.php?tid=1369) Pages:
1
2
|
Characters with accents in DTS files - JST1963 - 05-11-2019 I have about 2500 DTS tracks in my library (Wav-files). Some of them have characters with accents, like é, è, ë, à, Ö.... Unfortunately moOde displays them all as "?" In MP3's or FLAC's they're displayed correctly. Johan RE: Characters with accents in DTS files - swizzle - 05-12-2019 If these are older files it’s probably a text encoding issue, have you tried Config > Library > Linrary Options > UTF8 encoding? RE: Characters with accents in DTS files - JST1963 - 05-12-2019 (05-12-2019, 12:37 AM)swizzle Wrote: If these are older files it’s probably a text encoding issue, have you tried Config > Library > Linrary Options > UTF8 encoding? It was set to "No", but even changing it to "yes", clearing cache, rebooting, deleting library tag cache... still have those question marks instead of the special chars... but like I said, only for wav's, not for MP3's or Flac's RE: Characters with accents in DTS files - swizzle - 05-12-2019 (05-12-2019, 12:47 AM)JST1963 Wrote:(05-12-2019, 12:37 AM)swizzle Wrote: If these are older files it’s probably a text encoding issue, have you tried Config > Library > Linrary Options > UTF8 encoding? Your best bet is to zip some of the problem files up and send a link to Tim so he can take a look at it. RE: Characters with accents in DTS files - JST1963 - 05-12-2019 Hope you can get it from here: Two examples RE: Characters with accents in DTS files - Tim Curtis - 05-12-2019 The dump from MPD database suggests bad data in the tags, possibly from the tagging utility. Notice that file: is ok but Artist: is not. Code: pi@rp5:/media $ telnet localhost 6600 RE: Characters with accents in DTS files - JST1963 - 05-12-2019 Do you have a better MP3 tagging program than MP3Tag. With the latter I always have the same result... RE: Characters with accents in DTS files - Tim Curtis - 05-12-2019 On my Mac I use iTunes to rip CD's to ALAC and then convert them to FLAC using XLD. I have a couple of albums whose file names and tags contain special characters and the tags display fine. I recall that WAV format is problematic wrt tags but I don't have much experience with that format. RE: Characters with accents in DTS files - TheOldPresbyope - 05-12-2019 From @Tim Curtis Quote:I recall that WAV format is problematic wrt tags but I don't have much experience with that format. And therein lies the rub. Different file formats, audio encodings, and metadata schemes are processed by MPD using different plugins written by different folks. It's my suspicion that the files are fine but you've run into a particular code path which isn't UTF-8 compliant. Regards, Kent RE: Characters with accents in DTS files - TheOldPresbyope - 05-12-2019 @JST1963 I just downloaded your sample files. Here's portions of what mediainfo says for each: Code: kreed@T520 ~/Music/SpecialCharactersinWav $ mediainfo Bl* In both cases, non-ASCII characters appear in the Performer (e.g., Artist) field. What's curious is that in both cases the encoding of the performer's name in the file name and in the performer field differs. I dumped the mediainfo output through od -c to get the encoding values. What's in the performer field is proper UTF-8 for the characters involved. What's in the file name is weird. (By the way, the third character in the file name is not ASCII "r" but an upper page UTF-8 character) I don't know what to conclude from this quick peek. UPDATE: I got so wrapped up in the filename curiosity that I forgot why I was doing this. It would seem your Artist fields contain properly encoded UTF-8 characters and MPD isn't dealing with them correctly. This seems to confirm my original conjecture. Regards, Kent |