how to map a kannada unicode value to a particular audio file from a speech database
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Swapna Havalgi
il 19 Gen 2016
Commentato: Swapna Havalgi
il 21 Gen 2016
Actually i am working on a project which converts kannada text to speech.As of now i am able to read the text document and able to generate unicode out of text document.now i have to map each obtained unicode to the speech database containing sounds of each kannada alphabet saved each audio file with the hex value of each unicode. can anyone suggest any solution to this problem.
0 Commenti
Risposta accettata
Walter Roberson
il 19 Gen 2016
Modificato: Walter Roberson
il 19 Gen 2016
If U holds the Unicode code point number, then
filename = sprintf('pronounce_%04X.wav', U)
this would produce, for example, 'pronounce_30DB.wav' for codepoint U+30DB (decimal 12507), ホ
6 Commenti
Walter Roberson
il 19 Gen 2016
projectdir = '/folder/where/files/are';
[data, fs] = wavread( fullfile(projectdir, filename) );
Or when you say "database" do you mean something like an SQL database? If so then you need to say more about what kind of database it is and what fieldname is going to be used and what the format of the key will be.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Other Formats in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!