I want to make a program in C# that receives a sentence as input and returns rhyming variations of words within that sentence. These variations will be produced on a word-by-word basis using a custom dictionary file. A person (read: me) can use this software (if they are exceedingly bored) to create poems, raps, etc .
Here is an example to demonstrate what I need:
Custom Dictionary File:
Wumpette
Shnorkle
Frak
Bace
Foobar
Summah
Ex1:
Input: I like to snorkle in the summer with my pet.
Output: I like to shnorkle in the summah with my wumpette.
Ex2:
Input: I am back inside my car.
Output: I am frak inside my foobar.
Looking at the above examples, it may seem that all I need is to calculate the Levenshtein distance (also known as the edit distance between my input words and each of my dictionary words. However this would not necessarily pick the proper word. For instance, in the last example "back" would be matched to "bace" instead of "frak."
From what I understand, this means that I need to break each of my custom words into their phonemes. Then, I can calculate a sort of Levenshtein distance on a per-phoneme basis, giving more weight to the phonemes at the end of the word.
If this is basically correct, then what I need is a software library (or at least an algorithm) for producing phonemes out of words.
I've done some digging around and I've found a few things that could be useful:
WordNet : A Lexical Database for English
and
Finally, I found this: a paper titled "Finding Rhymes in Hip Hop lyrics" along with some C# code. I am currently attempting to rework this code, but I ran into a problem: the phonemes for each word are pre-generated (by CMU - linked above).
This leads be back to the same thing: I need a library to generate phonemes from custom (non-dictionary) words.
If someone could shed some light or point me in the right direction I'd appreciate it!
P.S To avoid over-complicating things, I am only interested in American-English phonemes.