I want to learn an Irish Gaelic song, but the phonology is making my brain hurt. Here's a line:
’Sé mo Shaesar, ghille mear
Pronounced like:
/ʃe mo hezər ɣɪlə mar/
Is there a program that can convert the lyrics to the International Phonetic Alphabet?
Use
espeak -q --ipa
to convert text input to IPA.Option
-q
means "quiet" -- in this case literally "don't speak".First check that it supports the language:
Then specify the language and feed the line:
I don't know why the output has leading spaces and a linebreak, but feeding it into
echo
will remove them:Use
while read
to do the whole lyrics: