Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a library in python that can convert words (mainly names) to Arpabet phonetic transcription?

BARBELS -> B AA1 R B AH0 L Z

BARBEQUE -> B AA1 R B IH0 K Y UW2

BARBEQUED -> B AA1 R B IH0 K Y UW2 D

BARBEQUEING -> B AA1 R B IH0 K Y UW2 IH0 NG

BARBEQUES -> B AA1 R B IH0 K Y UW2 Z

share|improve this question
It doesn't have Arpabet, but if you're generally looking for sound analysis, you might take a look at pypi.python.org/pypi/Fuzzy – Amber Aug 11 '12 at 1:15

3 Answers

Get the cmu pronouncing dictionary and then you can use nltk to get the associated
arpabet phonetic transcription for any word from that dictionary itself like this

>>> entries = nltk.corpus.cmudict.entries()
>>> len(entries)
127012
>>> for entry in entries[39943:39951]:
...     print entry
...
('fir', ['F', 'ER1'])
('fire', ['F', 'AY1', 'ER0'])
('fire', ['F', 'AY1', 'R'])
('firearm', ['F', 'AY1', 'ER0', 'AA2', 'R', 'M'])
('firearm', ['F', 'AY1', 'R', 'AA2', 'R', 'M'])
('firearms', ['F', 'AY1', 'ER0', 'AA2', 'R', 'M', 'Z'])
('firearms', ['F', 'AY1', 'R', 'AA2', 'R', 'M', 'Z'])
('fireball', ['F', 'AY1', 'ER0', 'B', 'AO2', 'L'])
share|improve this answer
that's useful, but I mainly need it to pronounce words that are not on the list of entries, at least I get a list of syllables together with their transcription, so that I can use these syllables in new words... – hmghaly Aug 11 '12 at 1:22

Using nltk with the cmudict corpus installed:

arpabet = nltk.corpus.cmudict.dict()
for word in ('barbels', 'barbeque', 'barbequed', 'barbequeing', 'barbeques'):
    print(arpabet[word])

yields

[['B', 'AA1', 'R', 'B', 'AH0', 'L', 'Z']]
[['B', 'AA1', 'R', 'B', 'IH0', 'K', 'Y', 'UW2']]
[['B', 'AA1', 'R', 'B', 'IH0', 'K', 'Y', 'UW2', 'D']]
[['B', 'AA1', 'R', 'B', 'IH0', 'K', 'Y', 'UW2', 'IH0', 'NG']]
[['B', 'AA1', 'R', 'B', 'IH0', 'K', 'Y', 'UW2', 'Z']]

To install the cmudict corpus in the python interpreter type:

>>> import nltk
>>> nltk.download()
Use GUI to install 
corpora>cmudict
share|improve this answer
That's also useful, but it doesn't work for words outside this dictionary, is there a way to find the arpabet for any string? or at least some way to syllabify the string and look for syllables in the dictionary? – hmghaly Aug 11 '12 at 1:30
Such a thing might exist, but I don't know about it. – unutbu Aug 11 '12 at 1:45

What you want is variously called "letter to sound" or "grapheme to phoneme" engine. There are a few around, including one in every text-to-speech system.

I usually deal with non-US accents, for which I use espeak. It doesn't output arpabet directly (which is restricted to US sounds anyway), but you can coax it to attempt an American accent, and convert from IPA to arpabet later.

>>> from subprocess import check_output
>>> print check_output(["espeak", "-q", "--ipa",
                        '-v', 'en-us',
                        'hello  world']).decode('utf-8')
həlˈoʊ wˈɜːld

You can use -x rather than --ipa for espeak's own phone representation (it's ascii):

>>> check_output(["espeak", "-q", "-x", '-v', 'en-us', 'hello world'])
h@l'oU w'3:ld

Converting to arpabet isn't quite as simple as a character look-up though; for example "tʃ" should be converted to "CH", not the "T SH" that a greedy conversion would give you (except, that is, in odd cases like "swˈɛtʃɑːp" for "sweatshop").

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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