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
0
votes
0 answers

How can i search for phonetic word in ms sql

I have a table named Employee which contains column title and ID. id Title 1 IHR Notification: Myanmar reported 2 Notification1: Moonmar reported with 3 cases now I want to search for phonetic word Myanmar but soundex function fails…
0
votes
1 answer

Can Mandarin pronunciation be coded by ARPABET phone set?

The code doesn't need to be exactly correct. A pronunciation in English can be used to represent a similar pronunciation in Chinese, e.g. /ʈ͡ʂ/ can use "CH" to represent.
0
votes
1 answer

Is there a python library I could use to convert audio to phonemes?

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
0
votes
0 answers

Parallelizing phonetic distance between all pairwise combinations of words in a document

I am trying to calculate the phonetic distance between every word in a document. My typical document is on the order of 30,000 unique words, pairwise that is on the order of 500,000,000 (n*(n-1)/2) combinations to compute. I am using pyphonetics and…
0
votes
2 answers

Plot using black and white color scheme in ggplot2?

As most scientific journals discourage the use of coloured plots, how can I distinguish between the two types (Singleton/Geminate) using black-and-white colour scheme? The code to generate the present plot is: ggplot (df, aes(x = Place, y= C2, fill…
Pranav_b
  • 19
  • 8
0
votes
1 answer

How to convert text into ipa?

I want to convert some text into ipa to make sure the pronunciation will always be the same on all tts engines. I didn't find a good way to do that, especially I need this for german. I hoped for a service from a big player like Google, because of…
chocolate cake
  • 2,129
  • 5
  • 26
  • 48
0
votes
1 answer

Why mono sounds are preferred over stereo sounds when it comes to analyse acoustic parameters like intensity, RMS amplitude, fundamental frequency etc

In phonetic analyses, while using software like Praat, I have seen people's liking mono sounds over stereo sounds. Even if the recordings were done using a stereo microphone, the audio files are often converted to stereo. Any reason besides saving…
Pranav_b
  • 19
  • 8
0
votes
2 answers

Is there a function to replace specific values in a column based on condition from another column?

I wish to replace the present value in column 'Manner' for all the words containing, 'kala', 'kalla' in column 'Filename' (the first two initials denote the Speaker) from "Sonorant' to "Liquid". My idea is that it could be performed through 'dplyr'…
Pranav_b
  • 19
  • 8
0
votes
1 answer

Transcribe non-english audio to phonetically similar english words

Essentially, if I have an audio file where someone is speaking, is there something I can use to match the audio to similar sounding English words. For example, if a Spanish speaker said: Hola, me llamo Bob y me gusta ir a la biblioteca. The program…
Boio
  • 807
  • 1
  • 7
  • 14
0
votes
1 answer

Is there a way to extract rows based on condition of one column?

I wish to extract all columns for rows 4, 11 and so on. If you look at my posted data, my wish is to extract row values that are present immediately before an 'A' in column 'xsampa'. For example, all the columns for row 4 (that occur before row 5…
Pranav_b
  • 19
  • 8
0
votes
1 answer

French phonetic dictionary

I want to be able to search like in a normal dictionary, but a phonetic one. To search words that sounds like I want Do you know if there's somewhere a file/software/anything that permit to search on a French phonetic dictionary? (idc if it uses…
aaa
  • 23
  • 2
0
votes
1 answer

Java JDBC problem with International Phonetic Alphabet (IPA)

I'm working with a database that has one table with a field that is wrote with IPA characters, for example one field is: /iː/ - /ɪ/ I'm doing a prepared statement and the result set is empty and it shouldn't (I've checked the query) and when I print…
RandomGuy9
  • 21
  • 3
0
votes
2 answers

Vowel explanation

please i really need to finish my work as soon as possible. But i m confused with the vowel I have extracted. Those vowels I have extracted are eɪ/, /iː/, /aɪ/, /oʊ/, /u for long vowel and /æ/, /ɛ/, /ɪ/, /ɒ/, /ʊ/ for short vowel. Now in my work…
Camille
  • 1
  • 3
0
votes
1 answer

To remove non- pair entries in a dataframe?

A column 'Consonant' in my dataframe 'df' has two levels with numbers, 250 for 'Geminate and 214 for 'Singleton'. Because Geminates are more in number, how can I remove the extra entries for Geminates, so to equate with the 'Singleton'? The output…
Pranav_b
  • 19
  • 8
0
votes
1 answer

Why is Java's Double Metaphone only giving four letter codes?

I want to use DoubleMetaphone to get a phonetic encoding of a given string. For example: import org.apache.commons.codec.language.DoubleMetaphone; String s1 = "computer"; (new DoubleMetaphone()).doubleMetaphone(s1); Result: Computer -> KMPT The…
Ian
  • 3,605
  • 4
  • 31
  • 66