I'm trying to develop an online application where the user writes some text and the software sings it back to the user.

I can currently generate the audio file with the words spoken by the computer using espeak, but I have no idea how to make it sound like a song, how to add rhythm to it.

I'm able to change the pitch and tempo using rubberband, but that's as far as I've gotten.

Does anyone have a clue how to make this happen?

link|improve this question
How good does it need to sound? – Jared Updike May 4 '10 at 1:01
I have no specific advice, but why not record yourself talking a tune, and then singing it, and compare the differences in the recordings with appropriate audio software. (frequency/wavelength, etc). – Noon Silk May 4 '10 at 1:03
If you haven't, you might want to see what's already available: en.wikipedia.org/wiki/Vocaloid – kwatford May 4 '10 at 1:22
yes, Yamaha threw a lot of development resources at this problem (see vocaloid link above), and still failed to create anything sounding authentically human. – Mark Heath May 4 '10 at 16:24
+1, this is a really awesome question – Paul Nathan Jun 2 '10 at 17:36
show 1 more comment
feedback

2 Answers

If you want to use rubberband to change duration and pitch, then I think the hard part is going to be mapping from phonemes/syllables in the text to corresponding audio ranges in the speech systhesis output, for which I have no simple suggestion. (Ideally you'd get inside the speech synthesiser so that it would provide you with the mapping from phonemes to audio location.)

A simpler alternative might be to try Speech Synthesizer Markup Language - SSML. It has a "pitch" and "duration" elements that can absolutely specify pitch in Hz and duration in seconds. You can also specify volume, for controlling dynamics.

Given this, you could try to convert the text into a SSML document, and mark up words/syllables/phonemees with pitch/duration and volume attributes.

link|improve this answer
Which SSML engine(s) can process at that level ? – Jim Rush Jun 7 '10 at 12:23
feedback
up vote 0 down vote accepted

I've ended up using Festival's singing mode. It sounds reasonably well, except for the fact it only works with English voices.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.