I am trying to create an open source tamil Text to Speech Engine.
https://github.com/arcturusannamalai/open-tamil/ Using the above open-tamil library, I can split tamil words into letters. ======== cat letter.py import tamil.utf8 as utf8 letters = utf8.get_letters(u"கூவிளம் என்பது என்ன சீர்") for letter in letters: print letter ========== python letter.py கூ வி ள ம் எ ன் ப து எ ன் ன சீ ர் --------- I can split the tamil words into letters using open-tamil. Now, looking for sound files with the sounds of all tamil letters. So that we can map the text to sound files. Do we have such collection online? Thanks. -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get CollabNet Subversion Edge : http://www.collab.net/svnedge _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelines: http://ilugc.in/mailinglist-guidelines
