I'm working on a project for which I need to convert audio to phonemes. What I'm looking for is something like this. I would be good if along with the phonemes I could also get the timestamps at which they occur
Asked
Active
Viewed 1,380 times
0
-
1Does this answer your question? [convert sound to list of phonemes in python](https://stackoverflow.com/questions/30705028/convert-sound-to-list-of-phonemes-in-python) – Harris Minhas Jul 22 '21 at 18:15
-
These types of questions are off-topic for Stack Overflow, but there is a dedicated Stack Exchange site for [software recommendations](https://softwarerecs.stackexchange.com). – chepner Jul 22 '21 at 18:23
1 Answers
3
Have a look at Allosaurus, a universal (~2000 lang) phone recognizer to give you IPA phonemes. On a sample wave file, I did downloaded the latest model and tried this in Python3.
python3 -m allosaurus.bin.download_model -m latest
python3 -m allosaurus.run -i sample.wav
taken from convert sound to list of phonemes in python

Jonathan Coletti
- 448
- 4
- 13