Questions tagged [phonetics]

Phonetics is a branch of linguistics that comprises the study of the sounds of human speech, or—in the case of sign languages—the equivalent aspects of sign.

It is concerned with the physical properties of speech sounds or signs (phones): their physiological production, acoustic properties, auditory perception, and neurophysiological status. Phonology, on the other hand, is concerned with the abstract, grammatical characterization of systems of sounds or signs.

116 questions
3
votes
1 answer

Finding pronunciation correctness

I need to identify the "quality" of the user's pronunciation with the help of Microsoft speech SDK (System.Speech.Recognition). I am using MS Speech Engine - US, so what I actually need is to find out how close the speaker's voice is to the "North…
PeakGen
  • 21,894
  • 86
  • 261
  • 463
3
votes
1 answer

lucene.net phonetic filter

I am trying to store text data to lucene. The search should be with phonetic! Where should I add a phonetic filter? Lucene.Net.Store.Directory dir = FSDirectory.Open(new DirectoryInfo(Application.StartupPath + "\\Index")); IndexReader indexReader =…
3
votes
1 answer

How to Implement Phonetic Algorithm in Python on Names with Multiple Words

I've read a bunch of posts such as: Levenshtein distance based methods Vs Soundex Lightweight fuzzy search library And I've gone through and found the double metaphone code. But the double metaphone algorithm returns a tuple for a given string,…
user1590499
  • 933
  • 3
  • 10
  • 17
2
votes
1 answer

How to convert Arabic text to SAMPA phonetics?

We are making a project that need to speak Arabic and we've found an open source tool, the Mbrola project, that can do this. However, I also need some way to convert the Arabic text to the SAMPA phonetics. So could any one help me to convert the…
JimmyKomy
  • 31
  • 4
2
votes
1 answer

MS SAPI sdk equivalent on OSX

I'm looking for an SDK that would allow me to have speech recognition on a OSX application. I already have a working code for windows using sapi, to get speech recognition info from an audio file, and i would like to see how to do this in osx since…
2
votes
1 answer

Meta tags: title and description for both latin and non latin letter site

I have (I believe) a unique situation; a bit of a puzzle. heres the deal. Situation: I have a one language web site, where everything (content, links) are in non-latin based characters. (Cyrillic)(utf-8) The site aims to connect Russian…
2
votes
1 answer

Praat script to remove specific boundaries

I'm wondering if there is any Praat script available that removes boundaries between two specific segments in a specific Tier. For example, if Tier1 contains a word such as cars, and Tier2 contains the corresponding segments |k|ɑː|r|z|. How can I…
Dallak
  • 23
  • 1
  • 5
2
votes
1 answer

Phonetic Algorithms for Postgresql

please, I am working on a PoC for Person Real-time Identification, and one of the critical aspects of it is to support both minor misspelling and phonetic variations of First, Middle, and Last name. Like HarinGton == HarrinBton or RaphEAl == RafAEl.…
jfbaro
  • 301
  • 2
  • 10
2
votes
0 answers

How do i implement highlighting for phonetic search in solr?

The case here is, when i search for a word eg. xyz it properly shows the field with highlighting tags but for others eg. abc, even though the word is part of searched field value, it doesn't do the highlighting at all. …
P.T
  • 21
  • 3
2
votes
1 answer

How to generate homophones on substring level?

I want to generate homophones of words programmatically. Meaning, words that sound similar to the original words. I've come across the Soundex algorithm, but it just replaces some characters with other characters (like t instead of d). Are there any…
ScientiaEtVeritas
  • 5,158
  • 4
  • 41
  • 59
2
votes
2 answers

Waveform Comparison

I am working on a personal research project. My objective is to be able to recognize a sound and identify if it belongs to the IPA or not by comparing it's waveform to a wave form in my data base. I have some skill with Mathematica, SciPy, and…
Nikki
  • 69
  • 1
  • 10
2
votes
2 answers

Phonetically searching postal code with Solr 5.4

Using Solr 5.4, I am trying to index and search postal codes phonetically. I have tried combining NGramFilterFactory and BeiderMorseFilterFactory, but doesn't seem to work. For example, I want to store and index "AB11 9RD" and search as "a B 11 nine…
2
votes
2 answers

How to map Arabic letters to phonemes in Python?

I want to make a simple Python script that will map each Arabic letter to phoneme sound symbols. I have a file that has a bunch of words that the script will read to convert them to phonemes, and I have the following dictionary in my code: Content…
0x01Brain
  • 798
  • 2
  • 12
  • 28
2
votes
2 answers

Phonetic search results for integers with Elasticserach

Forgive me as I am new to Elasticsearch, but I am following the Phonetic start guide found here: Phonetic Matching I have the following POST /app { "settings": { "index": { "analysis": { "filter": { …
Andrew Butler
  • 1,060
  • 2
  • 14
  • 31
2
votes
1 answer

Convert Arpabet to IPA with stress

I create a dictionary and have a problem with converting Arpabet representation of a word to IPA (International Phonetic Alphabet) with stress. In Arpabet, you can find which vowel has a stress with the number after the vowel. For example, the word…
Oleg
  • 22,300
  • 9
  • 68
  • 84