How to detect sounds in IPA spellingSAMPA of a language - phones or phonemes?Which IPA sounds are similar?Are there any sources that provide accurate IPA transcriptions for Danish?how to produce pharyngeal sounds?IPA to plain simple English translatorSeeking IPA study aids (symbol memorization, audio recognition, transcription practice)Complete list of sounds in all languages (IPA)The anatomy of the L soundGeneral American English words for IPA vowel soundsAccurately representing stress

Can you take a "free object interaction" while incapacitated?

Relations between homogeneous polynomials

categorizing a variable turns it from insignificant to significant

What properties make a magic weapon befit a Rogue more than a DEX-based Fighter?

When is the exact date for EOL of Ubuntu 14.04 LTS?

Capacitor electron flow

Not hide and seek

Can creatures abilities target that creature itself?

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Is this saw blade faulty?

Derivative of an interpolated function

PTIJ: Which Dr. Seuss books should one obtain?

Would a primitive species be able to learn English from reading books alone?

How to detect sounds in IPA spelling

What is the meaning of "You've never met a graph you didn't like?"

Why can't I get pgrep output right to variable on bash script?

How would a solely written language work mechanically

Air travel with refrigerated insulin

Put the phone down / Put down the phone

Why do Radio Buttons not fill the entire outer circle?

Started in 1987 vs. Starting in 1987

What do the positive and negative (+/-) transmit and receive pins mean on Ethernet cables?

Name this simple norm equality! (Real Analysis)

Mac Mini (2018) 10Gb Port Compatibility



How to detect sounds in IPA spelling


SAMPA of a language - phones or phonemes?Which IPA sounds are similar?Are there any sources that provide accurate IPA transcriptions for Danish?how to produce pharyngeal sounds?IPA to plain simple English translatorSeeking IPA study aids (symbol memorization, audio recognition, transcription practice)Complete list of sounds in all languages (IPA)The anatomy of the L soundGeneral American English words for IPA vowel soundsAccurately representing stress













1















First, please forgive my ignorance, I'm completely new to linguistics.



Given the IPA spelling for word, is it possible to programmatically split it into its sounds? So, for example, given the word "ingredient" and it's IPA spelling "ɪn'gridiənt", is it possible to split it into ["ɪn", "gri", "di", "ənt"]? Is there perhaps a finite list of sounds, at least in the English language, by which an IPA word can be split?



Any help appreciated










share|improve this question







New contributor




skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    1















    First, please forgive my ignorance, I'm completely new to linguistics.



    Given the IPA spelling for word, is it possible to programmatically split it into its sounds? So, for example, given the word "ingredient" and it's IPA spelling "ɪn'gridiənt", is it possible to split it into ["ɪn", "gri", "di", "ənt"]? Is there perhaps a finite list of sounds, at least in the English language, by which an IPA word can be split?



    Any help appreciated










    share|improve this question







    New contributor




    skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      1












      1








      1








      First, please forgive my ignorance, I'm completely new to linguistics.



      Given the IPA spelling for word, is it possible to programmatically split it into its sounds? So, for example, given the word "ingredient" and it's IPA spelling "ɪn'gridiənt", is it possible to split it into ["ɪn", "gri", "di", "ənt"]? Is there perhaps a finite list of sounds, at least in the English language, by which an IPA word can be split?



      Any help appreciated










      share|improve this question







      New contributor




      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      First, please forgive my ignorance, I'm completely new to linguistics.



      Given the IPA spelling for word, is it possible to programmatically split it into its sounds? So, for example, given the word "ingredient" and it's IPA spelling "ɪn'gridiənt", is it possible to split it into ["ɪn", "gri", "di", "ənt"]? Is there perhaps a finite list of sounds, at least in the English language, by which an IPA word can be split?



      Any help appreciated







      ipa






      share|improve this question







      New contributor




      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 1 hour ago









      skedlyskedly

      61




      61




      New contributor




      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      skedly is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          1 Answer
          1






          active

          oldest

          votes


















          3














          This is, in fact, possible! It's not trivial, but it is straightforward.



          Your goal seems to be to break an English word (written in phonemic IPA) into syllables. There's a bit of controversy about how useful the concept of a "syllable" is in English, and a few different theories about what exactly a "syllable" is if it does exist, but the following is pretty widely accepted and should be good for your purpose.



          First, the theory of syllable structure: every syllable looks something like ONC, where O is the onset, N is the nucleus, and C is the coda. The nucleus is a vowel(*), and always has to be there; the onset and coda are groups of consonants, and aren't required.



          Second, the maximal onset principle: we want the onset to be as long as possible. So "tube" is /tub/, but "tuba" is /tu.ba/: the /b/ goes with the second syllable, because that makes the onset bigger.



          Third, the syllable structure constraints: certain patterns of consonants aren't allowed together. This one varies by language, but in English, the onset can only be three consonants long at most, and you can't have a stop followed by a fricative in the onset, among many others. So "axle" is /ak.səl/ instead of */a.ksəl/, despite the maximal onset principle. Wikipedia has a good list of these constrains.



          So if you want an algorithm for doing this:



          • Locate all the nuclei (vowels)

          • For each nucleus, work backward, adding sounds to the onset

          • If the onset stops being valid, take a step back, then put all the rest of the sounds in the previous syllable's coda


          (*) Some analyses of English have syllabic resonants, while others treat them as /ə/ plus resonant. In this answer I'm assuming you're using the version with schwa.






          share|improve this answer























          • What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

            – skedly
            1 hour ago












          • @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

            – Draconis
            55 mins ago










          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "312"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          skedly is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2flinguistics.stackexchange.com%2fquestions%2f30933%2fhow-to-detect-sounds-in-ipa-spelling%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3














          This is, in fact, possible! It's not trivial, but it is straightforward.



          Your goal seems to be to break an English word (written in phonemic IPA) into syllables. There's a bit of controversy about how useful the concept of a "syllable" is in English, and a few different theories about what exactly a "syllable" is if it does exist, but the following is pretty widely accepted and should be good for your purpose.



          First, the theory of syllable structure: every syllable looks something like ONC, where O is the onset, N is the nucleus, and C is the coda. The nucleus is a vowel(*), and always has to be there; the onset and coda are groups of consonants, and aren't required.



          Second, the maximal onset principle: we want the onset to be as long as possible. So "tube" is /tub/, but "tuba" is /tu.ba/: the /b/ goes with the second syllable, because that makes the onset bigger.



          Third, the syllable structure constraints: certain patterns of consonants aren't allowed together. This one varies by language, but in English, the onset can only be three consonants long at most, and you can't have a stop followed by a fricative in the onset, among many others. So "axle" is /ak.səl/ instead of */a.ksəl/, despite the maximal onset principle. Wikipedia has a good list of these constrains.



          So if you want an algorithm for doing this:



          • Locate all the nuclei (vowels)

          • For each nucleus, work backward, adding sounds to the onset

          • If the onset stops being valid, take a step back, then put all the rest of the sounds in the previous syllable's coda


          (*) Some analyses of English have syllabic resonants, while others treat them as /ə/ plus resonant. In this answer I'm assuming you're using the version with schwa.






          share|improve this answer























          • What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

            – skedly
            1 hour ago












          • @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

            – Draconis
            55 mins ago















          3














          This is, in fact, possible! It's not trivial, but it is straightforward.



          Your goal seems to be to break an English word (written in phonemic IPA) into syllables. There's a bit of controversy about how useful the concept of a "syllable" is in English, and a few different theories about what exactly a "syllable" is if it does exist, but the following is pretty widely accepted and should be good for your purpose.



          First, the theory of syllable structure: every syllable looks something like ONC, where O is the onset, N is the nucleus, and C is the coda. The nucleus is a vowel(*), and always has to be there; the onset and coda are groups of consonants, and aren't required.



          Second, the maximal onset principle: we want the onset to be as long as possible. So "tube" is /tub/, but "tuba" is /tu.ba/: the /b/ goes with the second syllable, because that makes the onset bigger.



          Third, the syllable structure constraints: certain patterns of consonants aren't allowed together. This one varies by language, but in English, the onset can only be three consonants long at most, and you can't have a stop followed by a fricative in the onset, among many others. So "axle" is /ak.səl/ instead of */a.ksəl/, despite the maximal onset principle. Wikipedia has a good list of these constrains.



          So if you want an algorithm for doing this:



          • Locate all the nuclei (vowels)

          • For each nucleus, work backward, adding sounds to the onset

          • If the onset stops being valid, take a step back, then put all the rest of the sounds in the previous syllable's coda


          (*) Some analyses of English have syllabic resonants, while others treat them as /ə/ plus resonant. In this answer I'm assuming you're using the version with schwa.






          share|improve this answer























          • What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

            – skedly
            1 hour ago












          • @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

            – Draconis
            55 mins ago













          3












          3








          3







          This is, in fact, possible! It's not trivial, but it is straightforward.



          Your goal seems to be to break an English word (written in phonemic IPA) into syllables. There's a bit of controversy about how useful the concept of a "syllable" is in English, and a few different theories about what exactly a "syllable" is if it does exist, but the following is pretty widely accepted and should be good for your purpose.



          First, the theory of syllable structure: every syllable looks something like ONC, where O is the onset, N is the nucleus, and C is the coda. The nucleus is a vowel(*), and always has to be there; the onset and coda are groups of consonants, and aren't required.



          Second, the maximal onset principle: we want the onset to be as long as possible. So "tube" is /tub/, but "tuba" is /tu.ba/: the /b/ goes with the second syllable, because that makes the onset bigger.



          Third, the syllable structure constraints: certain patterns of consonants aren't allowed together. This one varies by language, but in English, the onset can only be three consonants long at most, and you can't have a stop followed by a fricative in the onset, among many others. So "axle" is /ak.səl/ instead of */a.ksəl/, despite the maximal onset principle. Wikipedia has a good list of these constrains.



          So if you want an algorithm for doing this:



          • Locate all the nuclei (vowels)

          • For each nucleus, work backward, adding sounds to the onset

          • If the onset stops being valid, take a step back, then put all the rest of the sounds in the previous syllable's coda


          (*) Some analyses of English have syllabic resonants, while others treat them as /ə/ plus resonant. In this answer I'm assuming you're using the version with schwa.






          share|improve this answer













          This is, in fact, possible! It's not trivial, but it is straightforward.



          Your goal seems to be to break an English word (written in phonemic IPA) into syllables. There's a bit of controversy about how useful the concept of a "syllable" is in English, and a few different theories about what exactly a "syllable" is if it does exist, but the following is pretty widely accepted and should be good for your purpose.



          First, the theory of syllable structure: every syllable looks something like ONC, where O is the onset, N is the nucleus, and C is the coda. The nucleus is a vowel(*), and always has to be there; the onset and coda are groups of consonants, and aren't required.



          Second, the maximal onset principle: we want the onset to be as long as possible. So "tube" is /tub/, but "tuba" is /tu.ba/: the /b/ goes with the second syllable, because that makes the onset bigger.



          Third, the syllable structure constraints: certain patterns of consonants aren't allowed together. This one varies by language, but in English, the onset can only be three consonants long at most, and you can't have a stop followed by a fricative in the onset, among many others. So "axle" is /ak.səl/ instead of */a.ksəl/, despite the maximal onset principle. Wikipedia has a good list of these constrains.



          So if you want an algorithm for doing this:



          • Locate all the nuclei (vowels)

          • For each nucleus, work backward, adding sounds to the onset

          • If the onset stops being valid, take a step back, then put all the rest of the sounds in the previous syllable's coda


          (*) Some analyses of English have syllabic resonants, while others treat them as /ə/ plus resonant. In this answer I'm assuming you're using the version with schwa.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 1 hour ago









          DraconisDraconis

          12.2k11952




          12.2k11952












          • What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

            – skedly
            1 hour ago












          • @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

            – Draconis
            55 mins ago

















          • What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

            – skedly
            1 hour ago












          • @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

            – Draconis
            55 mins ago
















          What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

          – skedly
          1 hour ago






          What a fantastic answer. You're right, I'm trying to programatically translate a word or phrase into Aig, aka Aigy-Paigy. WordsApi provides the syllables and the IPA for a given word. I'm now considering where to insert eɪg. It might take me a while to decode and then code what you've provided but you've given me lots to go on. Thank you.

          – skedly
          1 hour ago














          @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

          – Draconis
          55 mins ago





          @skedly You're in luck in that case! That's even easier: find all the vowels (you can identify them on an IPA chart), then insert eɪg before each one. The only trick is figuring out whether two vowels in a row are a diphthong (should be treated as one vowel) or hiatus (should go in separate syllables). But there are only a handful of diphthongs in English, so you can just look those up in a table.

          – Draconis
          55 mins ago










          skedly is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          skedly is a new contributor. Be nice, and check out our Code of Conduct.












          skedly is a new contributor. Be nice, and check out our Code of Conduct.











          skedly is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Linguistics Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2flinguistics.stackexchange.com%2fquestions%2f30933%2fhow-to-detect-sounds-in-ipa-spelling%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Are there any AGPL-style licences that require source code modifications to be public? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Force derivative works to be publicAre there any GPL like licenses for Apple App Store?Do you violate the GPL if you provide source code that cannot be compiled?GPL - is it distribution to use libraries in an appliance loaned to customers?Distributing App for free which uses GPL'ed codeModifications of server software under GPL, with web/CLI interfaceDoes using an AGPLv3-licensed library prevent me from dual-licensing my own source code?Can I publish only select code under GPLv3 from a private project?Is there published precedent regarding the scope of covered work that uses AGPL software?If MIT licensed code links to GPL licensed code what should be the license of the resulting binary program?If I use a public API endpoint that has its source code licensed under AGPL in my app, do I need to disclose my source?

          2013 GY136 Descoberta | Órbita | Referências Menu de navegação«List Of Centaurs and Scattered-Disk Objects»«List of Known Trans-Neptunian Objects»

          Button changing it's text & action. Good or terrible? The 2019 Stack Overflow Developer Survey Results Are Inchanging text on user mouseoverShould certain functions be “hard to find” for powerusers to discover?Custom liking function - do I need user login?Using different checkbox style for different checkbox behaviorBest Practices: Save and Exit in Software UIInteraction with remote validated formMore efficient UI to progress the user through a complicated process?Designing a popup notice for a gameShould bulk-editing functions be hidden until a table row is selected, or is there a better solution?Is it bad practice to disable (replace) the context menu?