Input: 日本が好きです. Output: Nippon ga sukidesu. Phonetical reading is unfortunately not available through Google Translate API.

link|improve this question

38% accept rate
It's very hard to get this correct/the way you want, since readings are ambiguous. Your example may as well be read as "nihon ga suki desu"... – deceze Apr 29 '11 at 3:23
Agreed, it is hard, but online tools such as romaji.org, nihongo.j-talk.com/kanji do exist. If only had they had API =) – Arman Apr 29 '11 at 10:55
@deceze absolutely, in fact, it should be read as "nihon..." for any normal usage. You might find a few 80-year old people or politicians in Japan to say "Nippon" but otherwise it's extinct. – PandaWood Apr 29 '11 at 21:03
feedback

3 Answers

KAKASI is a good, simple tool for what you want to do:

% echo "日本が好きです。" | iconv -f utf8 -t eucjp | kakasi -i euc -Ha -Ka -Ja -Ea -ka
nippongasukidesu.

% echo "日本が好きです。" | iconv -f utf8 -t eucjp | kakasi -i euc -w | kakasi -i euc -Ha -Ka -Ja -Ea -ka
nippon ga suki desu .

Or another solution is to use Yahoo! JAPAN's Japanese Language Processing API. But it might be difficult to use because you need to sign up for Yahoo! JAPAN and register for the API key before using it and the documents are only available in Japanese.

link|improve this answer
Does anyone know how to use it with Android Java? Thanks – Bo. Aug 4 '11 at 11:00
1  
@Bo. This is the topic of another question: stackoverflow.com/questions/8904249/… – Nicolas Raoul Jan 18 at 2:08
feedback

Phonetical reading is unfortunately not available through Google Translate API.

Google translate does have that feature - Copy and paste that string into the box, and click "Read Phonetically" which is directly underneath the input text field. It will show you your exact output. It can also verbally read that string to you if you click "Listen".

http://translate.google.com/#

link|improve this answer
1  
True, it's available in Google Translate, but not available through Google Translate API. I need to convert to romaji about 500,000 sentences, so looking for tools I can use in my conversion script. Sorry for not making it clear. – Arman Apr 29 '11 at 3:23
feedback

take a look at this application. it's free and more you can take it and use it in a website or blog. http://ymabyts.blogspot.com/2012/02/japanese-to-romaji-converter-gadget.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.