hello,
i can’t read text on my mp3 files (it is in japanese) how can i convert it to read it please ?
version ID3v2.3 (ID3v1 ID3V2.3)
thanks for your help ![]()
hello,
i can’t read text on my mp3 files (it is in japanese) how can i convert it to read it please ?
version ID3v2.3 (ID3v1 ID3V2.3)
thanks for your help ![]()
Do you mean that you need them transliterated, translated, or are they shown incorrectly?
Please check your settings in File -> Options -> Tag -> Mpeg - Write:
From the documentation:
Unfortunately, if you haven't written your Japanese text in UTF-8 or UTF-16 from the outset, I don't see how you can translate/convert it later.
Could you show us a screenshot of what the text looks like now?
You would have to set your PC to the original code page with which the files were tagged originally.
You can see the encoding if you add a custom column with
Value: %_id3v2_character_encoding%
It does not tell you the codepage, though. The original Japanese codepage is 932.
Then you set the options>Tags>Mpeg to write UTF-16 encoded tags,
select the files
and press Ctrl-S to save the new encoding.
thanks for helping,
yes they shown incorrectly. like this
VocabularyEGoiE²¢Eêb:
HajimemashiteEͶßܵÄEßܵÄ- Nice to meet you. / How do you do?
Watashi wa Yumiko desu.Eí½µÍȱŷBEÍÄqÅ·B
i tried. so at the beginning, in the column, it said UTF-8, now I set the options>Tags>Mpeg to write UTF-16 encoded tags, and saved.
I have UTF-16 but japanese don’t appears …
To me it looks like the structure of your line is:
So the intended line was probably something like: Vocabulary ・ Goi ・ あい ・ 挨拶:
Why characters like E appear: E is not an actual character. It represents two bytes:
0x81 (Shift‑JIS lead byte)0x45 (Shift‑JIS trail byte)If a program interprets these bytes as Windows‑1252 instead of Shift‑JIS, it displays the strange symbol E.
In Shift‑JIS, the byte pair 81 45 corresponds to:
"・" (Japanese middle dot)
As far as I know, once the text has already been misinterpreted, the original byte values are lost - and without those bytes, the Japanese text cannot be reliably reconstructed.