I’ve recently started learning dutch. And I’ve gotten into the habit, whenever I learn a new word or phrase, of quickly typing it into google and listening to the audio to verify the pronunciation.
Do people find the audio on google translate to be accurate?
Videos
^ Give other websites if you guys have any thanks.
Translating a word from the alphabet of one language to another(get the pronuntiation), is named transliteration and it is not supported by Cloud Translate API yet.
However, there is a feature request filed for the same. You can vote for this feature by clicking "+1" and "STAR" mark to recieve updates on it.
I was also looking for the same answer. I haven't found a way to get Pronuntiation with the Google Translate API yet. However, I found a way to get it through the Python library. You can use the Python googletrans library. The code is as follows.
You must use googletrans library 3.1.0a0 to avoid errors.
# pip install googletrans==3.1.0a0
from googletrans import Translator
translator = Translator()
SENTENSE = "안녕하세요. 반갑습니다."
LANGUAGE_CODE = translator.detect(SENTENSE).lang
k = translator.translate(SENTENSE, dest=LANGUAGE_CODE)
print(k)
print(k.text)
print(k.pronunciation)
Output:
Translated(src=ko, dest=ko, text=안녕하세요. 반갑습니다., pronunciation=annyeonghaseyo. bangabseubnida., extra_data="{'translat...")
안녕하세요. 반갑습니다.
annyeonghaseyo. bangabseubnida.
I'm attempting to self teach myself German, I'm having a little trouble with some of the pronunciations and it seems every site is a little bit off. A good example of this as if you just say Deutschland in Google translate it sounds different then on other websites than in this site https://www.howtopronounce.com/deutschland/
Is google translate reliable enough on its pronunciation that I can use it to get an idea of what some harder to say words sound like?